mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +00:00
[Optimizations] do not override dependencies which are runtime replaced anyway
This commit is contained in:
parent
569fcfee68
commit
14c85b4e90
1 changed files with 5 additions and 0 deletions
|
|
@ -101,6 +101,11 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
|
aviallon.optimizations.blacklist = mkDefault (
|
||||||
|
options.aviallon.optimizations.blacklist.default
|
||||||
|
++ (traceValSeq (forEach config.system.replaceRuntimeDependencies (x: lib.getName x.oldDependency )))
|
||||||
|
);
|
||||||
nixpkgs.overlays = mkAfter [
|
nixpkgs.overlays = mkAfter [
|
||||||
(self: super: {
|
(self: super: {
|
||||||
fastStdenv = super.overrideCC super.gccStdenv (super.buildPackages.gcc_latest.overrideAttrs (old:
|
fastStdenv = super.overrideCC super.gccStdenv (super.buildPackages.gcc_latest.overrideAttrs (old:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue