mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
Enable __ignoreNulls globally
This commit is contained in:
parent
f5052a8679
commit
262c21ed46
|
@ -162,8 +162,6 @@ stdenv.mkDerivation {
|
|||
fi
|
||||
'' else null;
|
||||
|
||||
__ignoreNulls = true;
|
||||
|
||||
meta = {
|
||||
description = "The Linux kernel";
|
||||
license = "GPLv2";
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue