2009-02-09 08:51:03 -08:00
|
|
|
let
|
2006-09-25 03:07:59 -07:00
|
|
|
|
2009-02-09 08:51:03 -08:00
|
|
|
trivial = import ./trivial.nix;
|
|
|
|
lists = import ./lists.nix;
|
|
|
|
strings = import ./strings.nix;
|
2009-05-25 11:22:19 -07:00
|
|
|
stringsWithDeps = import ./strings-with-deps.nix;
|
2009-02-09 08:51:03 -08:00
|
|
|
attrsets = import ./attrsets.nix;
|
|
|
|
sources = import ./sources.nix;
|
|
|
|
options = import ./options.nix;
|
2009-03-30 06:22:19 -07:00
|
|
|
meta = import ./meta.nix;
|
2009-02-09 09:03:18 -08:00
|
|
|
debug = import ./debug.nix;
|
2009-02-09 08:51:03 -08:00
|
|
|
misc = import ./misc.nix;
|
2006-11-27 08:58:08 -08:00
|
|
|
|
|
|
|
in
|
2009-05-25 11:22:19 -07:00
|
|
|
{ inherit trivial lists strings stringsWithDeps attrsets sources options meta debug; }
|
2009-02-09 08:51:03 -08:00
|
|
|
# !!! don't include everything at top-level; perhaps only the most
|
|
|
|
# commonly used functions.
|
2009-05-25 11:22:19 -07:00
|
|
|
// trivial // lists // strings // stringsWithDeps // attrsets // sources
|
|
|
|
// options // meta // debug // misc
|