mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-11 14:43:47 +00:00
Merge pull request #296723 from hercules-ci/fix-mkDerivation-checkMetaRecursively
make-derivation.nix: Fix checkMetaRecursively
This commit is contained in:
commit
5bd006778f
@ -556,8 +556,8 @@ let
|
||||
|
||||
meta = checkMeta.commonMeta {
|
||||
inherit validity attrs pos;
|
||||
references = attrs.nativeBuildInputs ++ attrs.buildInputs
|
||||
++ attrs.propagatedNativeBuildInputs ++ attrs.propagatedBuildInputs;
|
||||
references = attrs.nativeBuildInputs or [] ++ attrs.buildInputs or []
|
||||
++ attrs.propagatedNativeBuildInputs or [] ++ attrs.propagatedBuildInputs or [];
|
||||
};
|
||||
validity = checkMeta.assertValidity { inherit meta attrs; };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user