We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c62ae96 commit 30205d7Copy full SHA for 30205d7
1 file changed
pkgs/tools/typesetting/tex/texlive/default.nix
@@ -99,8 +99,11 @@ let
99
urls = args.urls or (if args ? url then [ args.url ] else
100
lib.concatMap
101
(up: [
102
- "${up}/${urlName}.r${toString revision}.tar.xz"
103
- "${up}/${urlName}.tar.xz" # TODO To be removed for telive 2020
+ # Only ~11% of packages in texlive 2019 have revisions, so
+ # the number of requests is nearly doubled if we lookup
104
+ # the name with revision
105
+ # "${up}/${urlName}.r${toString revision}.tar.xz"
106
+ "${up}/${urlName}.tar.xz" # TODO To be removed for texlive 2020?
107
])
108
urlPrefixes);
109
0 commit comments