mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Fix binutils_deterministic to not break evaluation in certain cases. Quite a sneaky bug!
This commit is contained in:
parent
5ff3d84137
commit
25cffccc28
1 changed files with 4 additions and 1 deletions
|
@ -3244,7 +3244,10 @@ let
|
||||||
inherit noSysDirs;
|
inherit noSysDirs;
|
||||||
};
|
};
|
||||||
|
|
||||||
binutils_deterministic = binutils.override { deterministic = true; };
|
binutils_deterministic = lowPrio (callPackage ../development/tools/misc/binutils {
|
||||||
|
inherit noSysDirs;
|
||||||
|
deterministic = true;
|
||||||
|
});
|
||||||
|
|
||||||
binutils_gold = lowPrio (callPackage ../development/tools/misc/binutils {
|
binutils_gold = lowPrio (callPackage ../development/tools/misc/binutils {
|
||||||
inherit noSysDirs;
|
inherit noSysDirs;
|
||||||
|
|
Loading…
Reference in a new issue