mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
f9b9844949
svn path=/nixpkgs/trunk/; revision=14014
18 lines
522 B
Nix
18 lines
522 B
Nix
let
|
|
|
|
trivial = import ./trivial.nix;
|
|
lists = import ./lists.nix;
|
|
strings = import ./strings.nix;
|
|
attrsets = import ./attrsets.nix;
|
|
sources = import ./sources.nix;
|
|
options = import ./options.nix;
|
|
debug = import ./debug.nix;
|
|
misc = import ./misc.nix;
|
|
|
|
in
|
|
{ inherit trivial lists strings attrsets sources options debug; }
|
|
# !!! don't include everything at top-level; perhaps only the most
|
|
# commonly used functions.
|
|
// trivial // lists // strings // attrsets // sources // options
|
|
// debug // misc
|