mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
commit
5798b8c569
@ -154,8 +154,8 @@ let
|
||||
overrideRDepends = overrides: old:
|
||||
lib.mapAttrs (name: value:
|
||||
(builtins.getAttr name old).overrideAttrs (attrs: {
|
||||
nativeBuildInputs = attrs.nativeBuildInputs ++ value;
|
||||
propagatedNativeBuildInputs = attrs.propagatedNativeBuildInputs ++ value;
|
||||
nativeBuildInputs = (attrs.nativeBuildInputs or []) ++ value;
|
||||
propagatedNativeBuildInputs = (attrs.propagatedNativeBuildInputs or []) ++ value;
|
||||
})
|
||||
) overrides;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user