Enable __ignoreNulls globally

This commit is contained in:
Eelco Dolstra 2013-03-07 19:42:01 +01:00
parent f5052a8679
commit 262c21ed46
2 changed files with 8 additions and 2 deletions

View file

@ -162,8 +162,6 @@ stdenv.mkDerivation {
fi
'' else null;
__ignoreNulls = true;
meta = {
description = "The Linux kernel";
license = "GPLv2";

View file

@ -6,6 +6,12 @@
fetchurlBoot
}:
if ! builtins ? langVersion then
abort "This version of Nixpkgs requires Nix >= 1.2, please upgrade!"
else
let
lib = import ../../lib;
@ -30,6 +36,8 @@ let
propagatedUserEnvPkgs = [gcc] ++
lib.filter lib.isDerivation initialPath;
__ignoreNulls = true;
}
// rec {