mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
36 lines
917 B
Nix
36 lines
917 B
Nix
|
{
|
||
|
# Content-addressable Nix mirrors.
|
||
|
hashedMirrors = [
|
||
|
http://nix.cs.uu.nl/dist/tarballs
|
||
|
];
|
||
|
|
||
|
# Mirrors for mirror://site/filename URIs, where "site" is
|
||
|
# "sourceforge", "gnu", etc.
|
||
|
|
||
|
# SourceForge.
|
||
|
sourceforge = [
|
||
|
http://prdownloads.sourceforge.net/
|
||
|
http://heanet.dl.sourceforge.net/sourceforge/
|
||
|
http://surfnet.dl.sourceforge.net/sourceforge/
|
||
|
http://dfn.dl.sourceforge.net/sourceforge/
|
||
|
http://mesh.dl.sourceforge.net/sourceforge/
|
||
|
http://ovh.dl.sourceforge.net/sourceforge/
|
||
|
http://osdn.dl.sourceforge.net/sourceforge/
|
||
|
http://kent.dl.sourceforge.net/sourceforge/
|
||
|
];
|
||
|
|
||
|
# GNU.
|
||
|
gnu = [
|
||
|
ftp://ftp.nluug.nl/pub/gnu/
|
||
|
http://mirrors.kernel.org/gnu/
|
||
|
http://ftp.gnu.org/pub/gnu/
|
||
|
];
|
||
|
|
||
|
# kernel.org's /pub (/pub/{linux,software}) tree.
|
||
|
kernel = [
|
||
|
http://www.all.kernel.org/pub/
|
||
|
http://www.eu.kernel.org/pub/
|
||
|
http://www.de.kernel.org/pub/
|
||
|
];
|
||
|
}
|