summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-11-25 11:50:06 -0800
committerJon <jonringer@users.noreply.github.com>2019-11-27 19:45:35 -0800
commit289aacbf8cba597a3193c9b00134d86eb68bc919 (patch)
treea1dbdd3f8ff3f1760a7d4ff9e6634fe5d8e18f7e /pkgs/tools/typesetting
parent3e938541da529ef98a5906683574f3e2c6d8aa39 (diff)
downloadnixpkgs-289aacbf8cba597a3193c9b00134d86eb68bc919.tar
nixpkgs-289aacbf8cba597a3193c9b00134d86eb68bc919.tar.gz
nixpkgs-289aacbf8cba597a3193c9b00134d86eb68bc919.tar.bz2
nixpkgs-289aacbf8cba597a3193c9b00134d86eb68bc919.tar.lz
nixpkgs-289aacbf8cba597a3193c9b00134d86eb68bc919.tar.xz
nixpkgs-289aacbf8cba597a3193c9b00134d86eb68bc919.tar.zst
nixpkgs-289aacbf8cba597a3193c9b00134d86eb68bc919.zip
auctex: 12.1 -> 12.2
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 2513d48796e..787f19d91f4 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 = "12.1";
+  version = "12.2";
 
   # Make this a valid tex(live-new) package;
   # the pkgs attribute is provided with a hack below.
@@ -13,7 +13,7 @@ let auctex = stdenv.mkDerivation ( rec {
 
   src = fetchurl {
     url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
-    sha256 = "1d2x59jw42hr81fma195bniqyhvp5ig5q0xmywbkcy59f16wlp69";
+    sha256 = "14vqs08mkfzc91jg7kabs9sdn74vywj8a29gyrfa3ivnm9c7jrsr";
   };
 
   buildInputs = [ emacs texlive.combined.scheme-basic ghostscript ];