Merge pull request #32525 from dtzWill/fix/allowInsecurePredicate

fix use of config-specified allowInsecurePredicate
This commit is contained in:
Orivej Desh
2017-12-09 20:44:00 +00:00
committed by GitHub

View File

@@ -64,7 +64,7 @@ let
!allowUnfreePredicate attrs;
allowInsecureDefaultPredicate = x: builtins.elem x.name (config.permittedInsecurePackages or []);
allowInsecurePredicate = x: (config.allowUnfreePredicate or allowInsecureDefaultPredicate) x;
allowInsecurePredicate = x: (config.allowInsecurePredicate or allowInsecureDefaultPredicate) x;
hasAllowedInsecure = attrs:
(attrs.meta.knownVulnerabilities or []) == [] ||