mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
7 lines
416 B
Nix
7 lines
416 B
Nix
# Nix script to lookup maintainer github handles from their email address. Used by ./hydra-report.hs.
|
|
let
|
|
pkgs = import ../../.. {};
|
|
maintainers = import ../../maintainer-list.nix;
|
|
inherit (pkgs) lib;
|
|
mkMailGithubPair = _: maintainer: if maintainer ? github then { "${maintainer.email}" = maintainer.github; } else {};
|
|
in lib.zipAttrsWith (_: builtins.head) (lib.mapAttrsToList mkMailGithubPair maintainers)
|