Skip to content

Commit

Permalink
stdenv: disable checkMeta by default until issues resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
copumpkin committed May 1, 2017
1 parent 208fa65 commit f3a05a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/stdenv/generic/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down

0 comments on commit f3a05a0

Please sign in to comment.