summary refs log tree commit diff
path: root/lib/default.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2018-02-28 15:17:42 +0100
committerProfpatsch <mail@profpatsch.de>2018-03-04 03:26:44 +0100
commitaa47bac04f06aeea993dc2e2cc6649fde4f31ed7 (patch)
tree5595740705da879d4702351b929323bd3bde0494 /lib/default.nix
parentcf1b51aba2780fda582a18b1f97b1919339ddcd9 (diff)
downloadnixlib-aa47bac04f06aeea993dc2e2cc6649fde4f31ed7.tar
nixlib-aa47bac04f06aeea993dc2e2cc6649fde4f31ed7.tar.gz
nixlib-aa47bac04f06aeea993dc2e2cc6649fde4f31ed7.tar.bz2
nixlib-aa47bac04f06aeea993dc2e2cc6649fde4f31ed7.tar.lz
nixlib-aa47bac04f06aeea993dc2e2cc6649fde4f31ed7.tar.xz
nixlib-aa47bac04f06aeea993dc2e2cc6649fde4f31ed7.tar.zst
nixlib-aa47bac04f06aeea993dc2e2cc6649fde4f31ed7.zip
Convert maintainer file entries to attributes, add github handles
Based on https://github.com/NixOS/nixpkgs/pull/34842, the
nix-instantiate output was pretty-printed and the validity of the github handles
manually verified, by automatically checking whether the user handles exist on
github (https://github.com/userhandle, status 200 or 404).
Each handle under 5 characters was manually checked (because the collision
probability with non-maintainer accounts is high), each missing entry was
manually researched.

The script used is kept in `maintainers/scripts` as an example of how to work
with the mainainers list through nix’ JSON interface.
Diffstat (limited to 'lib/default.nix')
-rw-r--r--lib/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/default.nix b/lib/default.nix
index a25a23299b39..c8a898a292a0 100644
--- a/lib/default.nix
+++ b/lib/default.nix
@@ -21,7 +21,7 @@ let
 
     # packaging
     customisation = callLibs ./customisation.nix;
-    maintainers = callLibs ./maintainers.nix;
+    maintainers = import ./maintainers.nix;
     meta = callLibs ./meta.nix;
     sources = callLibs ./sources.nix;