diff --git a/pkgs/lib/misc.nix b/pkgs/lib/misc.nix index df3956f1147..d3b236f73e5 100644 --- a/pkgs/lib/misc.nix +++ b/pkgs/lib/misc.nix @@ -397,15 +397,4 @@ rec { && (eqListStrict (lib.attrValues a) (lib.attrValues b)) else a == b; # FIXME ! - - # Check absence of non-used options - # Obsolete? - checker = x: flag: opts: config: - (if flag then let result=( - (import ../build-support/checker) - opts config); in - (if (result=="") then x else - abort ("Unknown option specified: " + result)) - else x); - }