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