Add maintainers

This commit is contained in:
Aleix Boné 2025-09-30 14:21:43 +02:00
parent 67726c1d44
commit c4c3e54133
No known key found for this signature in database
3 changed files with 14 additions and 1 deletions

View File

@ -47,6 +47,8 @@ in
};
# propagate nixpkgs lib, so we can do bscpkgs.lib
inherit (nixpkgs) lib;
lib = nixpkgs.lib // {
bsc.maintainers = import ./pkgs/maintainers.nix;
};
};
}

View File

@ -121,6 +121,11 @@ let
all = buildList' "ci-all" [ pkgsList testList ];
in bscPkgs // {
lib = prev.lib // {
bsc.maintainers = import ./pkgs/maintainers.nix;
};
# Prevent accidental usage of bsc attribute
bsc = throw "the bsc attribute is deprecated, packages are now in the root";

6
pkgs/maintainers.nix Normal file
View 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";
}