about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/automake
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-07-10 15:35:04 +0200
committerPeter Simons <simons@cryp.to>2012-07-10 16:15:30 +0200
commitbb6c1e987812bc94f932f8cabd91d1fd83d9438a (patch)
treec0a1574dc1c4b76516ef112a9cbaba1c608f8aec /pkgs/development/tools/misc/automake
parent9ca3cc08f6d9d0b66cb6229f7f4ddcf098102770 (diff)
downloadnixlib-bb6c1e987812bc94f932f8cabd91d1fd83d9438a.tar
nixlib-bb6c1e987812bc94f932f8cabd91d1fd83d9438a.tar.gz
nixlib-bb6c1e987812bc94f932f8cabd91d1fd83d9438a.tar.bz2
nixlib-bb6c1e987812bc94f932f8cabd91d1fd83d9438a.tar.lz
nixlib-bb6c1e987812bc94f932f8cabd91d1fd83d9438a.tar.xz
nixlib-bb6c1e987812bc94f932f8cabd91d1fd83d9438a.tar.zst
nixlib-bb6c1e987812bc94f932f8cabd91d1fd83d9438a.zip
automake-1.12.x: update to version 1.12.2
Diffstat (limited to 'pkgs/development/tools/misc/automake')
-rw-r--r--pkgs/development/tools/misc/automake/automake-1.12.x.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/automake/automake-1.12.x.nix b/pkgs/development/tools/misc/automake/automake-1.12.x.nix
index 41aaff768766..ffcba351dd75 100644
--- a/pkgs/development/tools/misc/automake/automake-1.12.x.nix
+++ b/pkgs/development/tools/misc/automake/automake-1.12.x.nix
@@ -1,7 +1,7 @@
 {stdenv, fetchurl, perl, autoconf, makeWrapper, doCheck ? true}:
 
 stdenv.mkDerivation rec {
-  name = "automake-1.12.1";
+  name = "automake-1.12.2";
 
   # TODO: Remove the `aclocal' wrapper when $ACLOCAL_PATH support is
   # available upstream; see
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "mirror://gnu/automake/${name}.tar.xz";
-    sha256 = "0gqpbk51lbk0a4ixwdp4cnabzaj9qdsxypr1cmbs5hjan9lhhx9j";
+    sha256 = "5fb56e918189b377a22368e19baaf70252bd85a9969ed5f8a8373f49e8faf07f";
   };
 
   buildInputs = [perl autoconf makeWrapper];