1let
2
3 trivial = import ./trivial.nix;
4 lists = import ./lists.nix;
5 strings = import ./strings.nix;
6 stringsWithDeps = import ./strings-with-deps.nix;
7 attrsets = import ./attrsets.nix;
8 sources = import ./sources.nix;
9 modules = import ./modules.nix;
10 options = import ./options.nix;
11 types = import ./types.nix;
12 meta = import ./meta.nix;
13 debug = import ./debug.nix;
14 misc = import ./deprecated.nix;
15 maintainers = import ./maintainers.nix;
16 platforms = import ./platforms.nix;
17 systems = import ./systems.nix;
18 customisation = import ./customisation.nix;
19 licenses = import ./licenses.nix;
20
21in
22 { inherit trivial lists strings stringsWithDeps attrsets sources options
23 modules types meta debug maintainers licenses platforms systems;
24 }
25 # !!! don't include everything at top-level; perhaps only the most
26 # commonly used functions.
27 // trivial // lists // strings // stringsWithDeps // attrsets // sources
28 // options // types // meta // debug // misc // modules
29 // systems
30 // customisation