Add `stdenv.lib.maintainers'.

Suggested by Eelco Dolstra.

svn path=/nixpkgs/trunk/; revision=16126
This commit is contained in:
Ludovic Courtès 2009-07-01 15:38:55 +00:00
parent 108052a4e9
commit 7b7ed8f1af
2 changed files with 13 additions and 1 deletions

View file

@ -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

9
pkgs/lib/maintainers.nix Normal file
View file

@ -0,0 +1,9 @@
/* -*- coding: utf-8; -*- */
{
/* Add your name and email address here. Keep the list
alphabetically sorted. */
ludo = "Ludovic Courtès <ludo@gnu.org>";
}