r-modules: fix eval
Not sure how this worked before. Now it at least evals.
This commit is contained in:
parent
fb31cca5ee
commit
3dccc7c365
1 changed files with 2 additions and 2 deletions
|
@ -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 a new issue