stdenv: disable checkMeta by default until issues resolved

https://github.com/NixOS/nixpkgs/pull/25304#issuecomment-298385426
This commit is contained in:
Dan Peebles 2017-05-01 13:51:12 -04:00
parent 208fa65256
commit f3a05a0fb3

View file

@ -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";