maintainers: format with nixfmt
Vim cleaned up white space issues on its own from a hook so I decided to take a look after running through nixfmt. The end result looks pretty good to me, very minimal changes where everyting but the top-level comment seems good to keep. I decided to keep the top-level comment anyway so that future nixfmts would be minimal.
This commit is contained in:
parent
10132c6602
commit
fc5ba3109c
@ -1,5 +1,5 @@
|
|||||||
/* List of NixOS maintainers.
|
/* List of NixOS maintainers.
|
||||||
|
```nix
|
||||||
handle = {
|
handle = {
|
||||||
# Required
|
# Required
|
||||||
name = "Your name";
|
name = "Your name";
|
||||||
@ -13,32 +13,33 @@
|
|||||||
fingerprint = "AAAA BBBB CCCC DDDD EEEE FFFF 0000 1111 2222 3333";
|
fingerprint = "AAAA BBBB CCCC DDDD EEEE FFFF 0000 1111 2222 3333";
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
```
|
||||||
|
|
||||||
where
|
where
|
||||||
|
|
||||||
- `handle` is the handle you are going to use in nixpkgs expressions,
|
- `handle` is the handle you are going to use in nixpkgs expressions,
|
||||||
- `name` is your, preferably real, name,
|
- `name` is your, preferably real, name,
|
||||||
- `email` is your maintainer email address, and
|
- `email` is your maintainer email address, and
|
||||||
- `github` is your GitHub handle (as it appears in the URL of your profile page, `https://github.com/<userhandle>`),
|
- `github` is your GitHub handle (as it appears in the URL of your profile page, `https://github.com/<userhandle>`),
|
||||||
- `githubId` is your GitHub user ID, which can be found at `https://api.github.com/users/<userhandle>`,
|
- `githubId` is your GitHub user ID, which can be found at `https://api.github.com/users/<userhandle>`,
|
||||||
- `keys` is a list of your PGP/GPG key IDs and fingerprints.
|
- `keys` is a list of your PGP/GPG key IDs and fingerprints.
|
||||||
|
|
||||||
`handle == github` is strongly preferred whenever `github` is an acceptable attribute name and is short and convenient.
|
`handle == github` is strongly preferred whenever `github` is an acceptable attribute name and is short and convenient.
|
||||||
|
|
||||||
Add PGP/GPG keys only if you actually use them to sign commits and/or mail.
|
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
|
To get the required PGP/GPG values for a key run
|
||||||
```shell
|
```shell
|
||||||
gpg --keyid-format 0xlong --fingerprint <email> | head -n 2
|
gpg --keyid-format 0xlong --fingerprint <email> | head -n 2
|
||||||
```
|
```
|
||||||
|
|
||||||
!!! Note that PGP/GPG values stored here are for informational purposes only, don't use this file as a source of truth.
|
!!! Note that PGP/GPG values stored here are for informational purposes only, don't use this file as a source of truth.
|
||||||
|
|
||||||
More fields may be added in the future.
|
More fields may be added in the future.
|
||||||
|
|
||||||
Please keep the list alphabetically sorted.
|
Please keep the list alphabetically sorted.
|
||||||
See `./scripts/check-maintainer-github-handles.sh` for an example on how to work with this data.
|
See `./scripts/check-maintainer-github-handles.sh` for an example on how to work with this data.
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
"0x4A6F" = {
|
"0x4A6F" = {
|
||||||
email = "0x4A6F@shackspace.de";
|
email = "0x4A6F@shackspace.de";
|
||||||
@ -1572,10 +1573,12 @@
|
|||||||
githubId = 2217136;
|
githubId = 2217136;
|
||||||
name = "Ștefan D. Mihăilă";
|
name = "Ștefan D. Mihăilă";
|
||||||
keys = [
|
keys = [
|
||||||
{ longkeyid = "rsa4096/6E68A39BF16A3ECB";
|
{
|
||||||
|
longkeyid = "rsa4096/6E68A39BF16A3ECB";
|
||||||
fingerprint = "CBC9 C7CC 51F0 4A61 3901 C723 6E68 A39B F16A 3ECB";
|
fingerprint = "CBC9 C7CC 51F0 4A61 3901 C723 6E68 A39B F16A 3ECB";
|
||||||
}
|
}
|
||||||
{ longkeyid = "rsa4096/6220AD7846220A52";
|
{
|
||||||
|
longkeyid = "rsa4096/6220AD7846220A52";
|
||||||
fingerprint = "7EAB 1447 5BBA 7DDE 7092 7276 6220 AD78 4622 0A52";
|
fingerprint = "7EAB 1447 5BBA 7DDE 7092 7276 6220 AD78 4622 0A52";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
@ -1792,7 +1795,7 @@
|
|||||||
name = "Didier J. Devroye";
|
name = "Didier J. Devroye";
|
||||||
};
|
};
|
||||||
devhell = {
|
devhell = {
|
||||||
email = "\"^\"@regexmail.net";
|
email = ''"^"@regexmail.net'';
|
||||||
github = "devhell";
|
github = "devhell";
|
||||||
githubId = 896182;
|
githubId = 896182;
|
||||||
name = "devhell";
|
name = "devhell";
|
||||||
@ -2131,7 +2134,7 @@
|
|||||||
};
|
};
|
||||||
ehmry = {
|
ehmry = {
|
||||||
email = "ehmry@posteo.net";
|
email = "ehmry@posteo.net";
|
||||||
github= "ehmry";
|
github = "ehmry";
|
||||||
githubId = 537775;
|
githubId = 537775;
|
||||||
name = "Emery Hemingway";
|
name = "Emery Hemingway";
|
||||||
};
|
};
|
||||||
@ -2219,10 +2222,10 @@
|
|||||||
name = "Jack Kelly";
|
name = "Jack Kelly";
|
||||||
};
|
};
|
||||||
enorris = {
|
enorris = {
|
||||||
name = "Eric Norris";
|
name = "Eric Norris";
|
||||||
email = "erictnorris@gmail.com";
|
email = "erictnorris@gmail.com";
|
||||||
github = "ericnorris";
|
github = "ericnorris";
|
||||||
githubId = 1906605;
|
githubId = 1906605;
|
||||||
};
|
};
|
||||||
Enteee = {
|
Enteee = {
|
||||||
email = "nix@duckpond.ch";
|
email = "nix@duckpond.ch";
|
||||||
@ -2891,7 +2894,7 @@
|
|||||||
github = "hansjoergschurr";
|
github = "hansjoergschurr";
|
||||||
githubId = 9850776;
|
githubId = 9850776;
|
||||||
name = "Hans-Jörg Schurr";
|
name = "Hans-Jörg Schurr";
|
||||||
};
|
};
|
||||||
HaoZeke = {
|
HaoZeke = {
|
||||||
email = "r95g10@gmail.com";
|
email = "r95g10@gmail.com";
|
||||||
github = "haozeke";
|
github = "haozeke";
|
||||||
@ -4224,10 +4227,10 @@
|
|||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
luis = {
|
luis = {
|
||||||
email = "luis.nixos@gmail.com";
|
email = "luis.nixos@gmail.com";
|
||||||
github = "Luis-Hebendanz";
|
github = "Luis-Hebendanz";
|
||||||
githubId = 22085373;
|
githubId = 22085373;
|
||||||
name = "Luis Hebendanz";
|
name = "Luis Hebendanz";
|
||||||
};
|
};
|
||||||
lionello = {
|
lionello = {
|
||||||
email = "lio@lunesu.com";
|
email = "lio@lunesu.com";
|
||||||
@ -4470,12 +4473,12 @@
|
|||||||
githubId = 50230945;
|
githubId = 50230945;
|
||||||
name = "Marcus Boyd";
|
name = "Marcus Boyd";
|
||||||
};
|
};
|
||||||
marenz = {
|
marenz = {
|
||||||
email = "marenz@arkom.men";
|
email = "marenz@arkom.men";
|
||||||
github = "marenz2569";
|
github = "marenz2569";
|
||||||
githubId = 12773269;
|
githubId = 12773269;
|
||||||
name = "Markus Schmidl";
|
name = "Markus Schmidl";
|
||||||
};
|
};
|
||||||
markus1189 = {
|
markus1189 = {
|
||||||
email = "markus1189@gmail.com";
|
email = "markus1189@gmail.com";
|
||||||
github = "markus1189";
|
github = "markus1189";
|
||||||
@ -4725,7 +4728,7 @@
|
|||||||
githubId = 668926;
|
githubId = 668926;
|
||||||
name = "Maximilian Güntner";
|
name = "Maximilian Güntner";
|
||||||
};
|
};
|
||||||
mhaselsteiner = {
|
mhaselsteiner = {
|
||||||
email = "magdalena.haselsteiner@gmx.at";
|
email = "magdalena.haselsteiner@gmx.at";
|
||||||
github = "mhaselsteiner";
|
github = "mhaselsteiner";
|
||||||
githubId = 20536514;
|
githubId = 20536514;
|
||||||
@ -5789,11 +5792,10 @@
|
|||||||
github = "pradyuman";
|
github = "pradyuman";
|
||||||
githubId = 9904569;
|
githubId = 9904569;
|
||||||
name = "Pradyuman Vig";
|
name = "Pradyuman Vig";
|
||||||
keys = [
|
keys = [{
|
||||||
{ longkeyid = "rsa4096/4F74D5361C4CA31E";
|
longkeyid = "rsa4096/4F74D5361C4CA31E";
|
||||||
fingerprint = "240B 57DE 4271 2480 7CE3 EAC8 4F74 D536 1C4C A31E";
|
fingerprint = "240B 57DE 4271 2480 7CE3 EAC8 4F74 D536 1C4C A31E";
|
||||||
}
|
}];
|
||||||
];
|
|
||||||
};
|
};
|
||||||
prikhi = {
|
prikhi = {
|
||||||
email = "pavan.rikhi@gmail.com";
|
email = "pavan.rikhi@gmail.com";
|
||||||
@ -5807,10 +5809,12 @@
|
|||||||
githubId = 7537109;
|
githubId = 7537109;
|
||||||
name = "Michael Weiss";
|
name = "Michael Weiss";
|
||||||
keys = [
|
keys = [
|
||||||
{ longkeyid = "ed25519/0x130826A6C2A389FD"; # Git only
|
{
|
||||||
|
longkeyid = "ed25519/0x130826A6C2A389FD"; # Git only
|
||||||
fingerprint = "86A7 4A55 07D0 58D1 322E 37FD 1308 26A6 C2A3 89FD";
|
fingerprint = "86A7 4A55 07D0 58D1 322E 37FD 1308 26A6 C2A3 89FD";
|
||||||
}
|
}
|
||||||
{ longkeyid = "rsa3072/0xBCA9943DD1DF4C04"; # Email, etc.
|
{
|
||||||
|
longkeyid = "rsa3072/0xBCA9943DD1DF4C04"; # Email, etc.
|
||||||
fingerprint = "AF85 991C C950 49A2 4205 1933 BCA9 943D D1DF 4C04";
|
fingerprint = "AF85 991C C950 49A2 4205 1933 BCA9 943D D1DF 4C04";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
@ -6176,12 +6180,10 @@
|
|||||||
github = "rnhmjoj";
|
github = "rnhmjoj";
|
||||||
githubId = 2817565;
|
githubId = 2817565;
|
||||||
name = "Michele Guerini Rocco";
|
name = "Michele Guerini Rocco";
|
||||||
keys =
|
keys = [{
|
||||||
[
|
longkeyid = "ed25519/0xBFBAF4C975F76450";
|
||||||
{ longkeyid = "ed25519/0xBFBAF4C975F76450";
|
fingerprint = "92B2 904F D293 C94D C4C9 3E6B BFBA F4C9 75F7 6450";
|
||||||
fingerprint = "92B2 904F D293 C94D C4C9 3E6B BFBA F4C9 75F7 6450";
|
}];
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
rob = {
|
rob = {
|
||||||
email = "rob.vermaas@gmail.com";
|
email = "rob.vermaas@gmail.com";
|
||||||
@ -6386,10 +6388,10 @@
|
|||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
samrose = {
|
samrose = {
|
||||||
email = "samuel.rose@gmail.com";
|
email = "samuel.rose@gmail.com";
|
||||||
github = "samrose";
|
github = "samrose";
|
||||||
githubId = 115821;
|
githubId = 115821;
|
||||||
name = "Sam Rose";
|
name = "Sam Rose";
|
||||||
};
|
};
|
||||||
samueldr = {
|
samueldr = {
|
||||||
email = "samuel@dionne-riel.com";
|
email = "samuel@dionne-riel.com";
|
||||||
@ -7346,10 +7348,10 @@
|
|||||||
github = "tkerber";
|
github = "tkerber";
|
||||||
githubId = 5722198;
|
githubId = 5722198;
|
||||||
name = "Thomas Kerber";
|
name = "Thomas Kerber";
|
||||||
keys = [ {
|
keys = [{
|
||||||
longkeyid = "rsa4096/0x8489B911F9ED617B";
|
longkeyid = "rsa4096/0x8489B911F9ED617B";
|
||||||
fingerprint = "556A 403F B0A2 D423 F656 3424 8489 B911 F9ED 617B";
|
fingerprint = "556A 403F B0A2 D423 F656 3424 8489 B911 F9ED 617B";
|
||||||
} ];
|
}];
|
||||||
};
|
};
|
||||||
tmplt = {
|
tmplt = {
|
||||||
email = "tmplt@dragons.rocks";
|
email = "tmplt@dragons.rocks";
|
||||||
@ -7629,7 +7631,8 @@
|
|||||||
};
|
};
|
||||||
vcunat = {
|
vcunat = {
|
||||||
name = "Vladimír Čunát";
|
name = "Vladimír Čunát";
|
||||||
email = "v@cunat.cz"; # vcunat@gmail.com predominated in commits before 2019/03
|
# vcunat@gmail.com predominated in commits before 2019/03
|
||||||
|
email = "v@cunat.cz";
|
||||||
github = "vcunat";
|
github = "vcunat";
|
||||||
githubId = 1785925;
|
githubId = 1785925;
|
||||||
keys = [{
|
keys = [{
|
||||||
|
Loading…
Reference in New Issue
Block a user