Merge pull request #296723 from hercules-ci/fix-mkDerivation-checkMetaRecursively

make-derivation.nix: Fix checkMetaRecursively

authored by Robert Hensing and committed by GitHub 5bd00677 b268509e

+2 -2
+2 -2
pkgs/stdenv/generic/make-derivation.nix
··· 556 556 557 557 meta = checkMeta.commonMeta { 558 558 inherit validity attrs pos; 559 - references = attrs.nativeBuildInputs ++ attrs.buildInputs 560 - ++ attrs.propagatedNativeBuildInputs ++ attrs.propagatedBuildInputs; 559 + references = attrs.nativeBuildInputs or [] ++ attrs.buildInputs or [] 560 + ++ attrs.propagatedNativeBuildInputs or [] ++ attrs.propagatedBuildInputs or []; 561 561 }; 562 562 validity = checkMeta.assertValidity { inherit meta attrs; }; 563 563