From a440fba8e3cf552a2609be9da0202b355adebe2c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 26 Jun 2009 13:53:31 +0000 Subject: * Refactoring: move the types out of options.nix, which is much too big. Also, they could be useful beyond option handling. svn path=/nixpkgs/trunk/; revision=16055 --- pkgs/lib/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pkgs/lib/default.nix') diff --git a/pkgs/lib/default.nix b/pkgs/lib/default.nix index 55e7c8ab1f8..de5c04811c0 100644 --- a/pkgs/lib/default.nix +++ b/pkgs/lib/default.nix @@ -7,13 +7,14 @@ let attrsets = import ./attrsets.nix; sources = import ./sources.nix; options = import ./options.nix; + types = import ./types.nix; meta = import ./meta.nix; debug = import ./debug.nix; misc = import ./misc.nix; in - { inherit trivial lists strings stringsWithDeps attrsets sources options meta debug; } + { inherit trivial lists strings stringsWithDeps attrsets sources options types meta debug; } # !!! don't include everything at top-level; perhaps only the most # commonly used functions. // trivial // lists // strings // stringsWithDeps // attrsets // sources - // options // meta // debug // misc + // options // types // meta // debug // misc -- cgit 1.4.1