nixpkgs/pkgs/lib/default.nix
Eelco Dolstra 1635ec4bdf * Put strings-with-deps in lib.
svn path=/nixpkgs/trunk/; revision=15729
2009-05-25 18:22:19 +00:00

20 lines
650 B
Nix

let
trivial = import ./trivial.nix;
lists = import ./lists.nix;
strings = import ./strings.nix;
stringsWithDeps = import ./strings-with-deps.nix;
attrsets = import ./attrsets.nix;
sources = import ./sources.nix;
options = import ./options.nix;
meta = import ./meta.nix;
debug = import ./debug.nix;
misc = import ./misc.nix;
in
{ inherit trivial lists strings stringsWithDeps attrsets sources options 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