texlive: update server URLs
This commit is contained in:
parent
149b180f18
commit
d5816c9bcb
|
@ -121,18 +121,27 @@ let
|
||||||
map (up: "${up}/${urlName}.tar.xz") urlPrefixes
|
map (up: "${up}/${urlName}.tar.xz") urlPrefixes
|
||||||
);
|
);
|
||||||
|
|
||||||
# Upstream refuses to distribute stable tarballs, so we host snapshots on IPFS.
|
# Upstream refuses to distribute stable tarballs,
|
||||||
|
# so we host snapshots on IPFS or on our own servers.
|
||||||
# Common packages should get served from the binary cache anyway.
|
# Common packages should get served from the binary cache anyway.
|
||||||
# See discussions, e.g. https://github.com/NixOS/nixpkgs/issues/24683
|
# See discussions, e.g. https://github.com/NixOS/nixpkgs/issues/24683
|
||||||
urlPrefixes = args.urlPrefixes or [
|
urlPrefixes = args.urlPrefixes or [
|
||||||
# Should be stable for historic, archived releases
|
# A snapshot temporarily hosted by @xeji.
|
||||||
http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2017/tlnet-final/archive
|
# TODO: remove when there is a reliable long-term solution
|
||||||
|
https://cat3.de/texlive-2018/tlnet/archive
|
||||||
|
|
||||||
# TODO: Add IPFS and see if @veprbl is willing to add a texlive-2017-final mirror,
|
# TODO: Add another snapshot mirror
|
||||||
# or if we should just dump it and go to 2018.
|
|
||||||
|
# TODO: Add IPFS storage or host snapshot elsewhere,
|
||||||
|
# maybe on one of our project's servers
|
||||||
|
|
||||||
# The canonical source moves quickly and will be broken almost immediately
|
# The canonical source moves quickly and will be broken almost immediately
|
||||||
# http://mirror.ctan.org/tex-archive/systems/texlive/tlnet/archive
|
http://mirror.ctan.org/tex-archive/systems/texlive/tlnet/archive
|
||||||
|
|
||||||
|
# Should be stable for historic, archived releases
|
||||||
|
# http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2018/tlnet-final/archive
|
||||||
|
# TODO: use this later when 2018 is archived
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
src = fetchurl { inherit urls sha512; };
|
src = fetchurl { inherit urls sha512; };
|
||||||
|
|
Loading…
Reference in New Issue