about summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-03-24 23:47:40 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-03-24 23:47:40 +0000
commitc150dc2cf3c5e498225c05f7fa11d4a6f52faf36 (patch)
tree4e802cdb70bb82097e18f42ca48562f119a49b17 /pkgs/build-support
parent57f29aca821bd2a4dceb4c851ccd8e9d9bcfa4dc (diff)
downloadnixlib-c150dc2cf3c5e498225c05f7fa11d4a6f52faf36.tar
nixlib-c150dc2cf3c5e498225c05f7fa11d4a6f52faf36.tar.gz
nixlib-c150dc2cf3c5e498225c05f7fa11d4a6f52faf36.tar.bz2
nixlib-c150dc2cf3c5e498225c05f7fa11d4a6f52faf36.tar.lz
nixlib-c150dc2cf3c5e498225c05f7fa11d4a6f52faf36.tar.xz
nixlib-c150dc2cf3c5e498225c05f7fa11d4a6f52faf36.tar.zst
nixlib-c150dc2cf3c5e498225c05f7fa11d4a6f52faf36.zip
ignoring config option servicesProposal (is checked in upstart-jobs/default.nix)
svn path=/nixpkgs/trunk/; revision=11278
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/checker/default.nix4
1 files changed, 3 insertions, 1 deletions
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))