forked from rarias/bscpkgs
Add maintainers
This commit is contained in:
parent
8871e10cea
commit
916ab8440e
@ -25,6 +25,8 @@
|
||||
};
|
||||
|
||||
# propagate nixpkgs lib, so we can do bscpkgs.lib
|
||||
inherit (nixpkgs) lib;
|
||||
lib = nixpkgs.lib // {
|
||||
bsc.maintainers = import ./maintainers/maintainer-list.nix;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
6
maintainers/maintainer-list.nix
Normal file
6
maintainers/maintainer-list.nix
Normal file
@ -0,0 +1,6 @@
|
||||
builtins.mapAttrs (name: value: { email = name + "@bsc.es"; } // value) {
|
||||
abonerib.name = "Aleix Boné";
|
||||
arocanon.name = "Aleix Roca";
|
||||
rarias.name = "Rodrigo Arias";
|
||||
rpenacob.name = "Raúl Peñacoba";
|
||||
}
|
||||
@ -50,6 +50,11 @@ let
|
||||
};
|
||||
|
||||
in bscPkgs // {
|
||||
|
||||
lib = prev.lib // {
|
||||
bsc.maintainers = import ./maintainers/maintainer-list.nix;
|
||||
};
|
||||
|
||||
# Prevent accidental usage of bsc attribute
|
||||
bsc = throw "the bsc attribute is deprecated, packages are now in the root";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user