about summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2018-02-26 22:55:11 +0100
committerVladimír Čunát <vcunat@gmail.com>2018-02-26 22:55:11 +0100
commit6168c2e45f7dc17a237e4752eb4ee1dbb56f6a56 (patch)
treed6d622661e222045811f5bb26d441bb1fd7752f7 /pkgs/tools/typesetting
parentb92d9945015d40a76a6ce5a84ef0e49098f15faa (diff)
parente2243a5ac95826b5b8c23c77c3562d81e5146b29 (diff)
downloadnixlib-6168c2e45f7dc17a237e4752eb4ee1dbb56f6a56.tar
nixlib-6168c2e45f7dc17a237e4752eb4ee1dbb56f6a56.tar.gz
nixlib-6168c2e45f7dc17a237e4752eb4ee1dbb56f6a56.tar.bz2
nixlib-6168c2e45f7dc17a237e4752eb4ee1dbb56f6a56.tar.lz
nixlib-6168c2e45f7dc17a237e4752eb4ee1dbb56f6a56.tar.xz
nixlib-6168c2e45f7dc17a237e4752eb4ee1dbb56f6a56.tar.zst
nixlib-6168c2e45f7dc17a237e4752eb4ee1dbb56f6a56.zip
Merge master into staging
This is to cleanup the (re-)revert of merge to master.
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/tex/auctex/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/typesetting/tex/auctex/default.nix b/pkgs/tools/typesetting/tex/auctex/default.nix
index a0c6a66634b0..1ab009458405 100644
--- a/pkgs/tools/typesetting/tex/auctex/default.nix
+++ b/pkgs/tools/typesetting/tex/auctex/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, emacs, texlive, ghostscript }:
  
 let auctex = stdenv.mkDerivation ( rec {
-  version = "11.90";
+  version = "12.1";
   name = "${pname}-${version}";
 
   # Make this a valid tex(live-new) package;
@@ -14,7 +14,7 @@ let auctex = stdenv.mkDerivation ( rec {
 
   src = fetchurl {
     url = "mirror://gnu/${pname}/${name}.tar.gz";
-    sha256 = "13zimbyar3159arrcklmnmjxjvibrjpkac6d53mfv03pwpc2y8rw";
+    sha256 = "1d2x59jw42hr81fma195bniqyhvp5ig5q0xmywbkcy59f16wlp69";
   };
 
   buildInputs = [ emacs texlive.combined.scheme-basic ghostscript ];