about summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorJason "Don" O'Conal <lovek323@gmail.com>2014-03-03 16:33:12 +1100
committerJason "Don" O'Conal <lovek323@gmail.com>2014-03-03 21:58:19 +1100
commit30da7690985c8deac78c72c7acf982d28872440e (patch)
tree739979f97874ce1241d3f39e81e555a4e527ead6 /pkgs/tools/typesetting
parent13979ab58cb8e45f48722aa71ec6363fc7c9b444 (diff)
downloadnixlib-30da7690985c8deac78c72c7acf982d28872440e.tar
nixlib-30da7690985c8deac78c72c7acf982d28872440e.tar.gz
nixlib-30da7690985c8deac78c72c7acf982d28872440e.tar.bz2
nixlib-30da7690985c8deac78c72c7acf982d28872440e.tar.lz
nixlib-30da7690985c8deac78c72c7acf982d28872440e.tar.xz
nixlib-30da7690985c8deac78c72c7acf982d28872440e.tar.zst
nixlib-30da7690985c8deac78c72c7acf982d28872440e.zip
upgrade texlive-base, texlive-lang
Upgraded to 2013.20140215. The old version (2013.20131112) was no longer
available on the debian FTP server, so building from source was
impossible.
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/tex/texlive/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/tools/typesetting/tex/texlive/default.nix b/pkgs/tools/typesetting/tex/texlive/default.nix
index 3158f2859334..8fab16de6746 100644
--- a/pkgs/tools/typesetting/tex/texlive/default.nix
+++ b/pkgs/tools/typesetting/tex/texlive/default.nix
@@ -5,14 +5,16 @@ rec {
     sha256 = "1idgyim6r4bi3id245k616qrdarfh65xv3gi2psarqqmsw504yhd";
   };
 
+  texmfVersion = "2013.20140215";
   texmfSrc = fetchurl {
-    url = mirror://debian/pool/main/t/texlive-base/texlive-base_2013.20140123.orig.tar.xz;
-    sha256 = "1lwvqryfykz0d9pcjkhq1qh7dlcb6lsvjp7fizl18ji6166159iw";
+    url = "mirror://debian/pool/main/t/texlive-base/texlive-base_${texmfVersion}.orig.tar.xz";
+    sha256 = "0f1xqa1a1yklsiqz12rgihdc6viw8ghdbx2s2pw2k3h0dfsd6ss3";
   };
 
+  langTexmfVersion = "2013.20140215";
   langTexmfSrc = fetchurl {
-    url = mirror://debian/pool/main/t/texlive-lang/texlive-lang_2013.20140123.orig.tar.xz;
-    sha256 = "1smzkg31msn9ci7fc69xq5klhxab00z8bcxmz5daqzcal8ak3d2d";
+    url = "mirror://debian/pool/main/t/texlive-lang/texlive-lang_${langTexmfVersion}.orig.tar.xz";
+    sha256 = "0igz9kpd1rfbq7smb1wyd75cz396rinbh25rk19lxqh25dix0xzj";
   };
 
   passthru = { inherit texmfSrc langTexmfSrc; };