mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
stdenv: disable checkMeta by default until issues resolved
https://github.com/NixOS/nixpkgs/pull/25304#issuecomment-298385426
This commit is contained in:
parent
208fa65256
commit
f3a05a0fb3
@ -18,7 +18,9 @@ let lib = import ../../../lib; in lib.makeOverridable (
|
||||
|
||||
let
|
||||
|
||||
shouldCheckMeta = config.checkMeta or true;
|
||||
# See discussion at https://github.com/NixOS/nixpkgs/pull/25304#issuecomment-298385426
|
||||
# for why this defaults to false, but I (@copumpkin) want to default it to true soon.
|
||||
shouldCheckMeta = config.checkMeta or false;
|
||||
|
||||
allowUnfree = config.allowUnfree or false || builtins.getEnv "NIXPKGS_ALLOW_UNFREE" == "1";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user