summary refs log tree commit diff
path: root/pkgs/tools/typesetting/tex
diff options
context:
space:
mode:
authorJason "Don" O'Conal <lovek323@gmail.com>2014-03-03 16:31:44 +1100
committerJason "Don" O'Conal <lovek323@gmail.com>2014-03-03 21:58:00 +1100
commit13979ab58cb8e45f48722aa71ec6363fc7c9b444 (patch)
tree8a3a4913592e2f063b95d3049fce88caf3d2c573 /pkgs/tools/typesetting/tex
parenta577082e5e9765e72b40e559f48b256e7944bb1f (diff)
downloadnixlib-13979ab58cb8e45f48722aa71ec6363fc7c9b444.tar
nixlib-13979ab58cb8e45f48722aa71ec6363fc7c9b444.tar.gz
nixlib-13979ab58cb8e45f48722aa71ec6363fc7c9b444.tar.bz2
nixlib-13979ab58cb8e45f48722aa71ec6363fc7c9b444.tar.lz
nixlib-13979ab58cb8e45f48722aa71ec6363fc7c9b444.tar.xz
nixlib-13979ab58cb8e45f48722aa71ec6363fc7c9b444.tar.zst
nixlib-13979ab58cb8e45f48722aa71ec6363fc7c9b444.zip
upgrade texlive-extra to 2013.20140215
The old version (2013.20131112) was no longer available on the debian
mirrors, hence building from source was impossible.
Diffstat (limited to 'pkgs/tools/typesetting/tex')
-rw-r--r--pkgs/tools/typesetting/tex/texlive/extra.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/typesetting/tex/texlive/extra.nix b/pkgs/tools/typesetting/tex/texlive/extra.nix
index c6624e469e5d..056c7e0bf4e0 100644
--- a/pkgs/tools/typesetting/tex/texlive/extra.nix
+++ b/pkgs/tools/typesetting/tex/texlive/extra.nix
@@ -1,9 +1,11 @@
 args: with args;
 rec {
-  name = "texlive-extra-2013";
+  name    = "texlive-extra-2013";
+  version = "2013.20140215";
+
   src = fetchurl {
-    url = mirror://debian/pool/main/t/texlive-extra/texlive-extra_2013.20131219.orig.tar.xz;
-    sha256 = "09iijzq0y5kq16f3lv2jrln190ldbbzywpwr33hrmnw5yp3izmrh";
+    url = "mirror://debian/pool/main/t/texlive-extra/texlive-extra_${version}.orig.tar.xz";
+    sha256 = "04a67pns6q8kw1nl2v6x5p443kvhk8fr26qkcj7z098n68fpwls8";
   };
 
   buildInputs = [texLive xz];