Enable __ignoreNulls globally
This commit is contained in:
parent
f5052a8679
commit
262c21ed46
@ -162,8 +162,6 @@ stdenv.mkDerivation {
|
|||||||
fi
|
fi
|
||||||
'' else null;
|
'' else null;
|
||||||
|
|
||||||
__ignoreNulls = true;
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "The Linux kernel";
|
description = "The Linux kernel";
|
||||||
license = "GPLv2";
|
license = "GPLv2";
|
||||||
|
@ -6,6 +6,12 @@
|
|||||||
fetchurlBoot
|
fetchurlBoot
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
if ! builtins ? langVersion then
|
||||||
|
|
||||||
|
abort "This version of Nixpkgs requires Nix >= 1.2, please upgrade!"
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
lib = import ../../lib;
|
lib = import ../../lib;
|
||||||
@ -30,6 +36,8 @@ let
|
|||||||
|
|
||||||
propagatedUserEnvPkgs = [gcc] ++
|
propagatedUserEnvPkgs = [gcc] ++
|
||||||
lib.filter lib.isDerivation initialPath;
|
lib.filter lib.isDerivation initialPath;
|
||||||
|
|
||||||
|
__ignoreNulls = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// rec {
|
// rec {
|
||||||
|
Loading…
Reference in New Issue
Block a user