-
-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
266 changed files
with
5,301 additions
and
2,616 deletions.
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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<section xmlns="http://docbook.org/ns/docbook" | ||
xmlns:xlink="http://www.w3.org/1999/xlink" | ||
xmlns:xi="http://www.w3.org/2001/xinclude" | ||
xml:id="sec-prefer-remote-fetch"> | ||
<title>prefer-remote-fetch overlay</title> | ||
|
||
<para> | ||
<function>prefer-remote-fetch</function> is an overlay that download sources | ||
on remote builder. This is useful when the evaluating machine has a slow | ||
upload while the builder can fetch faster directly from the source. | ||
To use it, put the following snippet as a new overlay: | ||
<programlisting> | ||
self: super: | ||
(super.prefer-remote-fetch self super) | ||
</programlisting> | ||
|
||
A full configuration example for that sets the overlay up for your own account, | ||
could look like this | ||
|
||
<programlisting> | ||
$ mkdir ~/.config/nixpkgs/overlays/ | ||
$ cat > ~/.config/nixpkgs/overlays/prefer-remote-fetch.nix <<EOF | ||
self: super: super.prefer-remote-fetch self super | ||
EOF | ||
</programlisting> | ||
</para> | ||
</section> |
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 = "[email protected]"; | ||
# 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. | ||
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" = { | ||
|
@@ -341,6 +361,11 @@ | |
github = "apeyroux"; | ||
name = "Alexandre Peyroux"; | ||
}; | ||
ar1a = { | ||
email = "[email protected]"; | ||
github = "ar1a"; | ||
name = "Aria Edmonds"; | ||
}; | ||
arcadio = { | ||
email = "[email protected]"; | ||
github = "arcadio"; | ||
|
@@ -1586,6 +1611,11 @@ | |
email = "[email protected]"; | ||
name = "Edward O'Callaghan"; | ||
}; | ||
fusion809 = { | ||
email = "[email protected]"; | ||
github = "fusion809"; | ||
name = "Brenton Horne"; | ||
}; | ||
fuuzetsu = { | ||
email = "[email protected]"; | ||
github = "fuuzetsu"; | ||
|
@@ -1919,6 +1949,11 @@ | |
github = "infinisil"; | ||
name = "Silvan Mosberger"; | ||
}; | ||
ingenieroariel = { | ||
email = "[email protected]"; | ||
github = "ingenieroariel"; | ||
name = "Ariel Nunez"; | ||
}; | ||
ironpinguin = { | ||
email = "[email protected]"; | ||
github = "ironpinguin"; | ||
|
@@ -1933,6 +1968,15 @@ | |
email = "[email protected]"; | ||
name = "Ivan Tkatchev"; | ||
}; | ||
ivegotasthma = { | ||
email = "[email protected]"; | ||
github = "ivegotasthma"; | ||
name = "John Doe"; | ||
keys = [{ | ||
longkeyid = "rsa4096/09AC52AEA87817A4"; | ||
fingerprint = "4008 2A5B 56A4 79B9 83CB 95FD 09AC 52AE A878 17A4"; | ||
}]; | ||
}; | ||
ixmatus = { | ||
email = "[email protected]"; | ||
github = "ixmatus"; | ||
|
@@ -3245,6 +3289,11 @@ | |
github = "nyarly"; | ||
name = "Judson Lester"; | ||
}; | ||
nzhang-zh = { | ||
email = "[email protected]"; | ||
github = "nzhang-zh"; | ||
name = "Ning Zhang"; | ||
}; | ||
obadz = { | ||
email = "[email protected]"; | ||
github = "obadz"; | ||
|
@@ -3323,6 +3372,10 @@ | |
email = "[email protected]"; | ||
github = "oxij"; | ||
name = "Jan Malakhovski"; | ||
keys = [{ | ||
longkeyid = "rsa2048/0x0E6CA66E5C557AA8"; | ||
fingerprint = "514B B966 B46E 3565 0508 86E8 0E6C A66E 5C55 7AA8"; | ||
}]; | ||
}; | ||
oyren = { | ||
email = "[email protected]"; | ||
|
@@ -4316,6 +4369,11 @@ | |
github = "t184256"; | ||
name = "Alexander Sosedkin"; | ||
}; | ||
tadeokondrak = { | ||
email = "[email protected]"; | ||
github = "tadeokondrak"; | ||
name = "Tadeo Kondrak"; | ||
}; | ||
tadfisher = { | ||
email = "[email protected]"; | ||
github = "tadfisher"; | ||
|
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
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
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
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
Oops, something went wrong.