-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
maintainers/maintainer-list.nix: add PGP/GPG fingerprints #47663
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
45df055
maintainers/maintainer-list.nix: make the top comment a bit more read…
oxij 5abdbbb
maintainers/maintainer-list.nix: stop the real name policy
oxij be68971
maintainers/maintainer-list.nix: add PGP/GPG attributes
oxij 419ea86
maintainers/maintainer-list.nix: add my own PGP/GPG attributes
oxij File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,41 @@ | ||
/* List of NixOS maintainers. | ||
|
||
handle = { | ||
name = "Real name"; | ||
# Required | ||
name = "Your name"; | ||
email = "address@example.org"; | ||
|
||
# Optional | ||
github = "GithubUsername"; | ||
keys = [{ | ||
longkeyid = "rsa2048/0x0123456789ABCDEF"; | ||
fingerprint = "AAAA BBBB CCCC DDDD EEEE FFFF 0000 1111 2222 3333"; | ||
}]; | ||
}; | ||
|
||
where `name` is your real name, `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>`). | ||
address | ||
The only required fields are `name` and `email`. | ||
where | ||
|
||
- `handle` is the handle you are going to use in nixpkgs expressions, | ||
- `name` is your, preferably real, name, | ||
- `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>`), | ||
- `keys` is a list of your PGP/GPG key IDs and fingerprints. | ||
|
||
`handle == github` is strongly preffered 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. | ||
|
||
To get the required PGP/GPG values for a key run | ||
```shell | ||
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. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably self-evident, but maybe stipulate that the commit that adds a key be signed by that key? |
||
|
||
More fields may be added in the future. | ||
|
||
Please keep the list alphabetically sorted. | ||
See `../maintainers/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. | ||
*/ | ||
{ | ||
"1000101" = { | ||
|
@@ -3099,6 +3119,10 @@ | |
email = "oxij@oxij.org"; | ||
github = "oxij"; | ||
name = "Jan Malakhovski"; | ||
keys = [{ | ||
longkeyid = "rsa2048/0x0E6CA66E5C557AA8"; | ||
fingerprint = "514B B966 B46E 3565 0508 86E8 0E6C A66E 5C55 7AA8"; | ||
}]; | ||
}; | ||
oyren = { | ||
email = "m.scheuren@oyra.eu"; | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know it's getting complicated but how about adding an expiry date for the key? That way if there are multiple listed it makes it clearer which one is only there for historical reason (and that no new stuff should be signed with it).