From b00d82493028c8d88a90359fa238454f0d978842 Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Thu, 22 Aug 2013 09:37:20 +0300 Subject: [PATCH] Drop inferred, because "it was supposed to be used at every location which has no type" according to pierron - but isn't used in nixos/nixpkgs --- pkgs/lib/types.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/lib/types.nix b/pkgs/lib/types.nix index 6ddac61d91bf0..f268580d783ad 100644 --- a/pkgs/lib/types.nix +++ b/pkgs/lib/types.nix @@ -47,10 +47,6 @@ rec { types = rec { - inferred = mkOptionType { - name = "inferred type"; - }; - bool = mkOptionType { name = "boolean"; check = lib.traceValIfNot builtins.isBool;