Merge pull request #95553 from zowoq/rename-maintainers

maintainers: prefix number with underscore

Changed files
+44 -40
maintainers
nixos
pkgs
applications
misc
pdfsam-basic
networking
mailreaders
qubes
qubes-core-vchan-xen
window-managers
development
python-modules
shamir-mnemonic
trezor
web
shopify-themekit
games
eidolon
ninvaders
os-specific
linux
gobi_loader
servers
blockbook
monitoring
prometheus
timescale-prometheus
routinator
tacacsplus
trezord
trickster
web-apps
dokuwiki
xandikos
tools
networking
pmacct
tayga
+11 -4
maintainers/maintainer-list.nix
···
`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
···
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";
···
fingerprint = "F466 A548 AD3F C1F1 8C88 4576 8702 7528 B006 D66D";
}];
};
-
"1000101" = {
+
_1000101 = {
email = "b1000101@pm.me";
github = "1000101";
githubId = 791309;
···
githubId = 4971975;
name = "Janne Heß";
};
-
"dasj19" = {
+
dasj19 = {
email = "daniel@serbanescu.dk";
github = "dasj19";
githubId = 7589338;
···
githubId = 8547242;
name = "Stefan Rohrbacher";
};
-
"thelegy" = {
+
thelegy = {
email = "mail+nixos@0jb.de";
github = "thelegy";
githubId = 3105057;
+1 -1
nixos/modules/services/networking/bitcoind.nix
···
};
-
meta.maintainers = with maintainers; [ maintainers."1000101" ];
+
meta.maintainers = with maintainers; [ _1000101 ];
}
+1 -1
nixos/modules/services/networking/blockbook-frontend.nix
···
nameValuePair "${cfg.group}" { })) eachBlockbook;
};
-
meta.maintainers = with maintainers; [ maintainers."1000101" ];
+
meta.maintainers = with maintainers; [ _1000101 ];
}
+1 -2
nixos/modules/services/networking/trickster.nix
···
};
};
-
meta.maintainers = with maintainers; [ maintainers."1000101" ];
+
meta.maintainers = with maintainers; [ _1000101 ];
}
-
+1 -1
nixos/modules/services/networking/xandikos.nix
···
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";
+1 -1
nixos/modules/services/web-apps/dokuwiki.nix
···
};
};
-
meta.maintainers = with maintainers; [ maintainers."1000101" ];
+
meta.maintainers = with maintainers; [ _1000101 ];
}
+1 -1
nixos/tests/bitcoind.nix
···
import ./make-test-python.nix ({ pkgs, ... }: {
name = "bitcoind";
meta = with pkgs.stdenv.lib; {
-
maintainers = with maintainers; [ maintainers."1000101" ];
+
maintainers = with maintainers; [ _1000101 ];
};
machine = { ... }: {
+1 -1
nixos/tests/blockbook-frontend.nix
···
import ./make-test-python.nix ({ pkgs, ... }: {
name = "blockbook-frontend";
meta = with pkgs.stdenv.lib; {
-
maintainers = with maintainers; [ maintainers."1000101" ];
+
maintainers = with maintainers; [ _1000101 ];
};
machine = { ... }: {
+1 -1
nixos/tests/dokuwiki.nix
···
in {
name = "dokuwiki";
meta = with pkgs.stdenv.lib; {
-
maintainers = with maintainers; [ maintainers."1000101" ];
+
maintainers = with maintainers; [ _1000101 ];
};
machine = { ... }: {
services.dokuwiki."site1.local" = {
+1 -1
nixos/tests/trezord.nix
···
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 = { ... }: {
+1 -1
nixos/tests/trickster.nix
···
import ./make-test-python.nix ({ pkgs, ... }: {
name = "trickster";
meta = with pkgs.stdenv.lib; {
-
maintainers = with maintainers; [ maintainers."1000101" ];
+
maintainers = with maintainers; [ _1000101 ];
};
nodes = {
+1 -1
nixos/tests/xandikos.nix
···
{
name = "xandikos";
-
meta.maintainers = [ lib.maintainers."0x4A6F" ];
+
meta.maintainers = with lib.maintainers; [ _0x4A6F ];
nodes = {
xandikos_client = {};
+1 -1
pkgs/applications/misc/pdfsam-basic/default.nix
···
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 ];
};
}
+1 -1
pkgs/applications/networking/mailreaders/meli/default.nix
···
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;
};
}
+1 -2
pkgs/applications/qubes/qubes-core-vchan-xen/default.nix
···
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;
};
}
-
+1 -1
pkgs/applications/window-managers/cwm/default.nix
···
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;
};
+1 -1
pkgs/development/python-modules/shamir-mnemonic/default.nix
···
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 ];
};
}
+1 -1
pkgs/development/python-modules/trezor/default.nix
···
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 ];
};
}
+1 -1
pkgs/development/web/shopify-themekit/default.nix
···
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 ];
};
}
+1 -1
pkgs/games/eidolon/default.nix
···
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;
};
}
+1 -1
pkgs/games/ninvaders/default.nix
···
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;
};
}
+1 -1
pkgs/os-specific/linux/gobi_loader/default.nix
···
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;
};
}
+1 -1
pkgs/servers/blockbook/default.nix
···
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;
};
}
+1 -1
pkgs/servers/monitoring/prometheus/apcupsd-exporter.nix
···
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 ];
};
}
+1 -1
pkgs/servers/monitoring/prometheus/process-exporter.nix
···
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;
};
}
+1 -1
pkgs/servers/monitoring/timescale-prometheus/default.nix
···
homepage = "https://github.com/timescale/timescale-prometheus";
license = licenses.asl20;
platforms = platforms.unix;
-
maintainers = [ maintainers."0x4A6F" ];
+
maintainers = with maintainers; [ _0x4A6F ];
};
}
+1 -1
pkgs/servers/routinator/default.nix
···
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;
};
}
+1 -1
pkgs/servers/tacacsplus/default.nix
···
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;
};
}
+1 -1
pkgs/servers/trezord/default.nix
···
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;
};
}
+1 -1
pkgs/servers/trickster/trickster.nix
···
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 ];
};
}
+1 -1
pkgs/servers/web-apps/dokuwiki/default.nix
···
license = licenses.gpl2;
homepage = "https://www.dokuwiki.org";
platforms = platforms.all;
-
maintainers = with maintainers; [ maintainers."1000101" ];
+
maintainers = with maintainers; [ _1000101 ];
};
}
+1 -2
pkgs/servers/xandikos/default.nix
···
description = "Lightweight CalDAV/CardDAV server";
homepage = "https://github.com/jelmer/xandikos";
license = licenses.gpl3Plus;
-
maintainers = [ maintainers."0x4A6F" ];
+
maintainers = with maintainers; [ _0x4A6F ];
};
}
-
+1 -1
pkgs/tools/networking/pmacct/default.nix
···
'';
homepage = "http://www.pmacct.net/";
license = licenses.gpl2;
-
maintainers = [ maintainers."0x4A6F" ];
+
maintainers = with maintainers; [ _0x4A6F ];
platforms = platforms.unix;
};
}
+1 -1
pkgs/tools/networking/tayga/default.nix
···
'';
homepage = "http://www.litech.org/tayga";
license = licenses.gpl2;
-
maintainers = [ maintainers."0x4A6F" ];
+
maintainers = with maintainers; [ _0x4A6F ];
platforms = platforms.linux;
};
}