From 7b7ed8f1af447f7d2ddb503f6dbc5c137002e5b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 1 Jul 2009 15:38:55 +0000 Subject: [PATCH] Add `stdenv.lib.maintainers'. Suggested by Eelco Dolstra. svn path=/nixpkgs/trunk/; revision=16126 --- pkgs/lib/default.nix | 5 ++++- pkgs/lib/maintainers.nix | 9 +++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 pkgs/lib/maintainers.nix 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 diff --git a/pkgs/lib/maintainers.nix b/pkgs/lib/maintainers.nix new file mode 100644 index 00000000000..037097268ed --- /dev/null +++ b/pkgs/lib/maintainers.nix @@ -0,0 +1,9 @@ +/* -*- coding: utf-8; -*- */ + +{ + + /* Add your name and email address here. Keep the list + alphabetically sorted. */ + + ludo = "Ludovic Courtès "; +}