summary refs log tree commit diff
path: root/pkgs/lib/default.nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-07-01 15:38:55 +0000
committerLudovic Courtès <ludo@gnu.org>2009-07-01 15:38:55 +0000
commit7b7ed8f1af447f7d2ddb503f6dbc5c137002e5b3 (patch)
tree864f94c32fe86aead53af71f18cddf6729d37722 /pkgs/lib/default.nix
parent108052a4e94085f6cb414b604194b45885842104 (diff)
downloadnixpkgs-7b7ed8f1af447f7d2ddb503f6dbc5c137002e5b3.tar
nixpkgs-7b7ed8f1af447f7d2ddb503f6dbc5c137002e5b3.tar.gz
nixpkgs-7b7ed8f1af447f7d2ddb503f6dbc5c137002e5b3.tar.bz2
nixpkgs-7b7ed8f1af447f7d2ddb503f6dbc5c137002e5b3.tar.lz
nixpkgs-7b7ed8f1af447f7d2ddb503f6dbc5c137002e5b3.tar.xz
nixpkgs-7b7ed8f1af447f7d2ddb503f6dbc5c137002e5b3.tar.zst
nixpkgs-7b7ed8f1af447f7d2ddb503f6dbc5c137002e5b3.zip
Add `stdenv.lib.maintainers'.
Suggested by Eelco Dolstra.

svn path=/nixpkgs/trunk/; revision=16126
Diffstat (limited to 'pkgs/lib/default.nix')
-rw-r--r--pkgs/lib/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/lib/default.nix b/pkgs/lib/default.nix
index de5c04811c0..f3682f9f365 100644
--- a/pkgs/lib/default.nix
+++ b/pkgs/lib/default.nix
@@ -11,9 +11,12 @@ let
   meta = import ./meta.nix;
   debug = import ./debug.nix;
   misc = import ./misc.nix;
+  maintainers = import ./maintainers.nix;
 
 in
-  { inherit trivial lists strings stringsWithDeps attrsets sources options types meta debug; }
+  { inherit trivial lists strings stringsWithDeps attrsets sources options
+      types meta debug maintainers;
+  }
   # !!! don't include everything at top-level; perhaps only the most
   # commonly used functions.
   // trivial // lists // strings // stringsWithDeps // attrsets // sources