Add maintainers
This commit is contained in:
parent
67726c1d44
commit
c4c3e54133
@ -47,6 +47,8 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
# propagate nixpkgs lib, so we can do bscpkgs.lib
|
# propagate nixpkgs lib, so we can do bscpkgs.lib
|
||||||
inherit (nixpkgs) lib;
|
lib = nixpkgs.lib // {
|
||||||
|
bsc.maintainers = import ./pkgs/maintainers.nix;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -121,6 +121,11 @@ let
|
|||||||
all = buildList' "ci-all" [ pkgsList testList ];
|
all = buildList' "ci-all" [ pkgsList testList ];
|
||||||
|
|
||||||
in bscPkgs // {
|
in bscPkgs // {
|
||||||
|
|
||||||
|
lib = prev.lib // {
|
||||||
|
bsc.maintainers = import ./pkgs/maintainers.nix;
|
||||||
|
};
|
||||||
|
|
||||||
# Prevent accidental usage of bsc attribute
|
# Prevent accidental usage of bsc attribute
|
||||||
bsc = throw "the bsc attribute is deprecated, packages are now in the root";
|
bsc = throw "the bsc attribute is deprecated, packages are now in the root";
|
||||||
|
|
||||||
|
6
pkgs/maintainers.nix
Normal file
6
pkgs/maintainers.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";
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user