From c150dc2cf3c5e498225c05f7fa11d4a6f52faf36 Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Mon, 24 Mar 2008 23:47:40 +0000 Subject: [PATCH] ignoring config option servicesProposal (is checked in upstart-jobs/default.nix) svn path=/nixpkgs/trunk/; revision=11278 --- pkgs/build-support/checker/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/build-support/checker/default.nix b/pkgs/build-support/checker/default.nix index ebf977d4755f..ae25493c77c5 100644 --- a/pkgs/build-support/checker/default.nix +++ b/pkgs/build-support/checker/default.nix @@ -18,7 +18,9 @@ let if (! isAttrs b) then s else if (lib.getAttr ["_type"] "" b) == "option" then "" else findInList (x : x != "") - (map (x: checkAttrInclusion + ( map (x: if (x == "servicesProposal") # this attr will be checked at another place ( -> upstart-jobs/default.nix ) + then "" + else checkAttrInclusion (s + "." + x) (__getAttr x a) (lib.getAttr [x] null b))