Add `stdenv.lib.maintainers'.
Suggested by Eelco Dolstra. svn path=/nixpkgs/trunk/; revision=16126
This commit is contained in:
parent
108052a4e9
commit
7b7ed8f1af
|
@ -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
|
||||
|
|
|
@ -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>";
|
||||
}
|
Loading…
Reference in New Issue