1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-09-17 14:57:22 +03:00

lib: init mobile-nixos.lib.maintainers

This commit is contained in:
matthewcroughan 2023-04-28 19:07:51 +01:00
parent 4f2f104693
commit dacc78bbb5
2 changed files with 23 additions and 0 deletions

21
lib/maintainers.nix Normal file
View File

@ -0,0 +1,21 @@
/* List of Mobile NixOS maintainers.
If you are not yet a Nixpkgs maintainer, would like to only be a Mobile NixOS
maintainer or want to add Mobile NixOS specific details to your maintainership,
please add to this file.
This file re-uses the pattern from
https://github.com/NixOS/nixpkgs/blob/master/maintainers/maintainer-list.nix,
see it for more details.
Name and contact method such as email, matrix or github are required.
*/
{
matthewcroughan = {
email = "mobile-nixos@nix.how";
github = "MatthewCroughan";
githubId = 26458780;
name = "Matthew Croughan";
};
}
/* Keep the list alphabetically sorted. */

View File

@ -159,6 +159,8 @@ in
mkLVGUIApp = callPackage ./mobile-nixos/lvgui {};
lib.maintainers = import ../lib/maintainers.nix;
cross-canary-test = callPackage ./mobile-nixos/cross-canary/test.nix {};
cross-canary-test-static = self.pkgsStatic.callPackage ./mobile-nixos/cross-canary/test.nix {};
};