Skip to content

Commit

Permalink
Merge pull request #95553 from zowoq/rename-maintainers
Browse files Browse the repository at this point in the history
maintainers: prefix number with underscore
  • Loading branch information
FRidh committed Aug 18, 2020
2 parents e0c07bc + 83a1f0a commit fe7bab3
Show file tree
Hide file tree
Showing 34 changed files with 44 additions and 40 deletions.
15 changes: 11 additions & 4 deletions maintainers/maintainer-list.nix
Expand Up @@ -26,6 +26,13 @@
`handle == github` is strongly preferred whenever `github` is an acceptable attribute name and is short and convenient.
If `github` begins with a numeral, `handle` should be prefixed with an underscore.
```nix
_1example = {
github = "1example";
};
```
Add PGP/GPG keys only if you actually use them to sign commits and/or mail.
To get the required PGP/GPG values for a key run
Expand All @@ -41,7 +48,7 @@
See `./scripts/check-maintainer-github-handles.sh` for an example on how to work with this data.
*/
{
"0x4A6F" = {
_0x4A6F = {
email = "mail-maintainer@0x4A6F.dev";
name = "Joachim Ernst";
github = "0x4A6F";
Expand All @@ -51,7 +58,7 @@
fingerprint = "F466 A548 AD3F C1F1 8C88 4576 8702 7528 B006 D66D";
}];
};
"1000101" = {
_1000101 = {
email = "b1000101@pm.me";
github = "1000101";
githubId = 791309;
Expand Down Expand Up @@ -1884,7 +1891,7 @@
githubId = 4971975;
name = "Janne Heß";
};
"dasj19" = {
dasj19 = {
email = "daniel@serbanescu.dk";
github = "dasj19";
githubId = 7589338;
Expand Down Expand Up @@ -8198,7 +8205,7 @@
githubId = 8547242;
name = "Stefan Rohrbacher";
};
"thelegy" = {
thelegy = {
email = "mail+nixos@0jb.de";
github = "thelegy";
githubId = 3105057;
Expand Down
2 changes: 1 addition & 1 deletion nixos/modules/services/networking/bitcoind.nix
Expand Up @@ -256,6 +256,6 @@ in

};

meta.maintainers = with maintainers; [ maintainers."1000101" ];
meta.maintainers = with maintainers; [ _1000101 ];

}
2 changes: 1 addition & 1 deletion nixos/modules/services/networking/blockbook-frontend.nix
Expand Up @@ -270,6 +270,6 @@ in
nameValuePair "${cfg.group}" { })) eachBlockbook;
};

meta.maintainers = with maintainers; [ maintainers."1000101" ];
meta.maintainers = with maintainers; [ _1000101 ];

}
3 changes: 1 addition & 2 deletions nixos/modules/services/networking/trickster.nix
Expand Up @@ -108,7 +108,6 @@ in
};
};

meta.maintainers = with maintainers; [ maintainers."1000101" ];
meta.maintainers = with maintainers; [ _1000101 ];

}

2 changes: 1 addition & 1 deletion nixos/modules/services/networking/xandikos.nix
Expand Up @@ -90,7 +90,7 @@ in
config = mkIf cfg.enable (
mkMerge [
{
meta.maintainers = [ lib.maintainers."0x4A6F" ];
meta.maintainers = with lib.maintainers; [ _0x4A6F ];

systemd.services.xandikos = {
description = "A Simple Calendar and Contact Server";
Expand Down
2 changes: 1 addition & 1 deletion nixos/modules/services/web-apps/dokuwiki.nix
Expand Up @@ -383,6 +383,6 @@ in
};
};

meta.maintainers = with maintainers; [ maintainers."1000101" ];
meta.maintainers = with maintainers; [ _1000101 ];

}
2 changes: 1 addition & 1 deletion nixos/tests/bitcoind.nix
@@ -1,7 +1,7 @@
import ./make-test-python.nix ({ pkgs, ... }: {
name = "bitcoind";
meta = with pkgs.stdenv.lib; {
maintainers = with maintainers; [ maintainers."1000101" ];
maintainers = with maintainers; [ _1000101 ];
};

machine = { ... }: {
Expand Down
2 changes: 1 addition & 1 deletion nixos/tests/blockbook-frontend.nix
@@ -1,7 +1,7 @@
import ./make-test-python.nix ({ pkgs, ... }: {
name = "blockbook-frontend";
meta = with pkgs.stdenv.lib; {
maintainers = with maintainers; [ maintainers."1000101" ];
maintainers = with maintainers; [ _1000101 ];
};

machine = { ... }: {
Expand Down
2 changes: 1 addition & 1 deletion nixos/tests/dokuwiki.nix
Expand Up @@ -33,7 +33,7 @@ let
in {
name = "dokuwiki";
meta = with pkgs.stdenv.lib; {
maintainers = with maintainers; [ maintainers."1000101" ];
maintainers = with maintainers; [ _1000101 ];
};
machine = { ... }: {
services.dokuwiki."site1.local" = {
Expand Down
2 changes: 1 addition & 1 deletion nixos/tests/trezord.nix
@@ -1,7 +1,7 @@
import ./make-test-python.nix ({ pkgs, ... }: {
name = "trezord";
meta = with pkgs.stdenv.lib; {
maintainers = with maintainers; [ mmahut maintainers."1000101" ];
maintainers = with maintainers; [ mmahut _1000101 ];
};
nodes = {
machine = { ... }: {
Expand Down
2 changes: 1 addition & 1 deletion nixos/tests/trickster.nix
@@ -1,7 +1,7 @@
import ./make-test-python.nix ({ pkgs, ... }: {
name = "trickster";
meta = with pkgs.stdenv.lib; {
maintainers = with maintainers; [ maintainers."1000101" ];
maintainers = with maintainers; [ _1000101 ];
};

nodes = {
Expand Down
2 changes: 1 addition & 1 deletion nixos/tests/xandikos.nix
Expand Up @@ -4,7 +4,7 @@ import ./make-test-python.nix (
{
name = "xandikos";

meta.maintainers = [ lib.maintainers."0x4A6F" ];
meta.maintainers = with lib.maintainers; [ _0x4A6F ];

nodes = {
xandikos_client = {};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/misc/pdfsam-basic/default.nix
Expand Up @@ -44,6 +44,6 @@ stdenv.mkDerivation rec {
description = "Multi-platform software designed to extract pages, split, merge, mix and rotate PDF files";
license = licenses.agpl3;
platforms = platforms.all;
maintainers = with maintainers; [ maintainers."1000101" ];
maintainers = with maintainers; [ _1000101 ];
};
}
2 changes: 1 addition & 1 deletion pkgs/applications/networking/mailreaders/meli/default.nix
Expand Up @@ -44,7 +44,7 @@ rustPlatform.buildRustPackage rec {
description = "Experimental terminal mail client aiming for configurability and extensibility with sane defaults";
homepage = "https://meli.delivery";
license = licenses.gpl3;
maintainers = with maintainers; [ maintainers."0x4A6F" matthiasbeyer erictapen ];
maintainers = with maintainers; [ _0x4A6F matthiasbeyer erictapen ];
platforms = platforms.linux;
};
}
3 changes: 1 addition & 2 deletions pkgs/applications/qubes/qubes-core-vchan-xen/default.nix
Expand Up @@ -23,8 +23,7 @@ stdenv.mkDerivation rec {
description = "Libraries required for the higher-level Qubes daemons and tools";
homepage = "https://qubes-os.org";
license = licenses.gpl2Plus;
maintainers = [ maintainers."0x4A6F" ];
maintainers = with maintainers; [ _0x4A6F ];
platforms = platforms.linux;
};
}

2 changes: 1 addition & 1 deletion pkgs/applications/window-managers/cwm/default.nix
Expand Up @@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A lightweight and efficient window manager for X11";
homepage = "https://github.com/leahneukirchen/cwm";
maintainers = with maintainers; [ maintainers."0x4A6F" mkf ];
maintainers = with maintainers; [ _0x4A6F mkf ];
license = licenses.isc;
platforms = platforms.linux;
};
Expand Down
Expand Up @@ -17,6 +17,6 @@ buildPythonPackage rec {
description = "Reference implementation of SLIP-0039";
homepage = "https://github.com/trezor/python-shamir-mnemonic";
license = licenses.mit;
maintainers = with maintainers; [ maintainers."1000101" ];
maintainers = with maintainers; [ _1000101 ];
};
}
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/trezor/default.nix
Expand Up @@ -55,6 +55,6 @@ buildPythonPackage rec {
description = "Python library for communicating with TREZOR Bitcoin Hardware Wallet";
homepage = "https://github.com/trezor/trezor-firmware/tree/master/python";
license = licenses.gpl3;
maintainers = with maintainers; [ np prusnak mmahut maintainers."1000101" ];
maintainers = with maintainers; [ np prusnak mmahut _1000101 ];
};
}
2 changes: 1 addition & 1 deletion pkgs/development/web/shopify-themekit/default.nix
Expand Up @@ -19,6 +19,6 @@ buildGoPackage rec {
description = "A command line tool for shopify themes";
homepage = "https://shopify.github.io/themekit/";
license = licenses.mit;
maintainers = with maintainers; [ maintainers."1000101" ];
maintainers = with maintainers; [ _1000101 ];
};
}
2 changes: 1 addition & 1 deletion pkgs/games/eidolon/default.nix
Expand Up @@ -20,7 +20,7 @@ rustPlatform.buildRustPackage rec {
description = "A single TUI-based registry for drm-free, wine and steam games on linux, accessed through a rofi launch menu";
homepage = "https://github.com/nicohman/eidolon";
license = licenses.gpl3;
maintainers = [ maintainers."0x4A6F" ];
maintainers = with maintainers; [ _0x4A6F ];
platforms = platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/games/ninvaders/default.nix
Expand Up @@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
description = "Space Invaders clone based on ncurses";
homepage = "http://ninvaders.sourceforge.net/";
license = licenses.gpl2;
maintainers = with maintainers; [ maintainers."1000101" ];
maintainers = with maintainers; [ _1000101 ];
platforms = platforms.all;
};
}
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/gobi_loader/default.nix
Expand Up @@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
description = "Firmware loader for Qualcomm Gobi USB chipsets";
homepage = "https://www.codon.org.uk/~mjg59/gobi_loader/";
license = with licenses; [ gpl2 ];
maintainers = [ maintainers."0x4A6F" ];
maintainers = with maintainers; [ _0x4A6F ];
platforms = platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/blockbook/default.nix
Expand Up @@ -58,7 +58,7 @@ buildGoModule rec {
description = "Trezor address/account balance backend";
homepage = "https://github.com/trezor/blockbook";
license = licenses.agpl3;
maintainers = with maintainers; [ mmahut maintainers."1000101" ];
maintainers = with maintainers; [ mmahut _1000101 ];
platforms = platforms.unix;
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/monitoring/prometheus/apcupsd-exporter.nix
Expand Up @@ -21,6 +21,6 @@ buildGoModule rec {
description = "Provides a Prometheus exporter for the apcupsd Network Information Server (NIS)";
homepage = "https://github.com/mdlayher/apcupsd_exporter";
license = licenses.mit;
maintainers = with maintainers; [ maintainers."1000101" mdlayher ];
maintainers = with maintainers; [ _1000101 mdlayher ];
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/monitoring/prometheus/process-exporter.nix
Expand Up @@ -25,7 +25,7 @@ buildGoPackage rec {
description = "Prometheus exporter that mines /proc to report on selected processes";
homepage = "https://github.com/ncabatoff/process-exporter";
license = licenses.mit;
maintainers = with maintainers; [ maintainers."1000101" ];
maintainers = with maintainers; [ _1000101 ];
platforms = platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/monitoring/timescale-prometheus/default.nix
Expand Up @@ -23,6 +23,6 @@ buildGoModule rec {
homepage = "https://github.com/timescale/timescale-prometheus";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = [ maintainers."0x4A6F" ];
maintainers = with maintainers; [ _0x4A6F ];
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/routinator/default.nix
Expand Up @@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec {
description = "An RPKI Validator written in Rust";
homepage = "https://github.com/NLnetLabs/routinator";
license = licenses.bsd3;
maintainers = [ maintainers."0x4A6F" ];
maintainers = with maintainers; [ _0x4A6F ];
platforms = platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/tacacsplus/default.nix
Expand Up @@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
description = "A protocol for authentication, authorization and accounting (AAA) services for routers and network devices";
homepage = "http://www.shrubbery.net/tac_plus/";
license = licenses.free;
maintainers = [ maintainers."0x4A6F" ];
maintainers = with maintainers; [ _0x4A6F ];
platforms = with platforms; linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/trezord/default.nix
Expand Up @@ -19,7 +19,7 @@ buildGoPackage rec {
description = "TREZOR Communication Daemon aka TREZOR Bridge";
homepage = "https://trezor.io";
license = licenses.lgpl3;
maintainers = with maintainers; [ canndrew jb55 prusnak mmahut maintainers."1000101" ];
maintainers = with maintainers; [ canndrew jb55 prusnak mmahut _1000101 ];
platforms = platforms.unix;
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/trickster/trickster.nix
Expand Up @@ -21,6 +21,6 @@ buildGoPackage rec {
description = "Reverse proxy cache for the Prometheus HTTP APIv1";
homepage = "https://github.com/Comcast/trickster";
license = licenses.asl20;
maintainers = with maintainers; [ maintainers."1000101" ];
maintainers = with maintainers; [ _1000101 ];
};
}
2 changes: 1 addition & 1 deletion pkgs/servers/web-apps/dokuwiki/default.nix
Expand Up @@ -50,6 +50,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2;
homepage = "https://www.dokuwiki.org";
platforms = platforms.all;
maintainers = with maintainers; [ maintainers."1000101" ];
maintainers = with maintainers; [ _1000101 ];
};
}
3 changes: 1 addition & 2 deletions pkgs/servers/xandikos/default.nix
Expand Up @@ -28,7 +28,6 @@ python3Packages.buildPythonApplication rec {
description = "Lightweight CalDAV/CardDAV server";
homepage = "https://github.com/jelmer/xandikos";
license = licenses.gpl3Plus;
maintainers = [ maintainers."0x4A6F" ];
maintainers = with maintainers; [ _0x4A6F ];
};
}

2 changes: 1 addition & 1 deletion pkgs/tools/networking/pmacct/default.nix
Expand Up @@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
'';
homepage = "http://www.pmacct.net/";
license = licenses.gpl2;
maintainers = [ maintainers."0x4A6F" ];
maintainers = with maintainers; [ _0x4A6F ];
platforms = platforms.unix;
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/networking/tayga/default.nix
Expand Up @@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
'';
homepage = "http://www.litech.org/tayga";
license = licenses.gpl2;
maintainers = [ maintainers."0x4A6F" ];
maintainers = with maintainers; [ _0x4A6F ];
platforms = platforms.linux;
};
}

0 comments on commit fe7bab3

Please sign in to comment.