From a40f68ddfb81322bd8651a1b150c3e5f6d3df995 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 1 Oct 2013 12:41:28 +0200 Subject: [PATCH] Remove unused file --- pkgs/build-support/checker/default.nix | 31 -------------------------- 1 file changed, 31 deletions(-) delete mode 100644 pkgs/build-support/checker/default.nix diff --git a/pkgs/build-support/checker/default.nix b/pkgs/build-support/checker/default.nix deleted file mode 100644 index 66f8c45e37b..00000000000 --- a/pkgs/build-support/checker/default.nix +++ /dev/null @@ -1,31 +0,0 @@ -# -# Checks that all set options are described. -# -options: configuration: -with builtins; -let lib=(import ../../lib); in -with lib; - -let - findInList = p: list: default: - if list == [] then default else - if (p (head list)) then (head list) else - findInList p (tail list) default; - - - checkAttrInclusion = s: a: b: - ( - if ! isAttrs b then s else - if (lib.attrByPath ["_type"] "" b) == "option" then "" else - findInList (x : x != "") - ( map (x: if (x == "servicesProposal") # this attr will be checked at another place ( -> upstart-jobs/default.nix ) - then "" - else checkAttrInclusion - (s + "." + x) - (builtins.getAttr x a) - (lib.attrByPath [x] null b)) - (attrNames a)) "" - ); -in - checkAttrInclusion "" configuration options -