about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/automake
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2020-04-18 23:11:00 +0200
committerVladimír Čunát <v@cunat.cz>2020-04-18 23:11:00 +0200
commite233a9d4dd1484d2b79e496d45f5e785642638ef (patch)
tree499ab40e63dafe5b272106ed386a568af6a9d16e /pkgs/development/tools/misc/automake
parentf63bc540cbd559736f1671e4ee10e4560b3d5d2a (diff)
parentd96487b9cadb27aba64cb05c2e4962fb3c9e1890 (diff)
downloadnixlib-e233a9d4dd1484d2b79e496d45f5e785642638ef.tar
nixlib-e233a9d4dd1484d2b79e496d45f5e785642638ef.tar.gz
nixlib-e233a9d4dd1484d2b79e496d45f5e785642638ef.tar.bz2
nixlib-e233a9d4dd1484d2b79e496d45f5e785642638ef.tar.lz
nixlib-e233a9d4dd1484d2b79e496d45f5e785642638ef.tar.xz
nixlib-e233a9d4dd1484d2b79e496d45f5e785642638ef.tar.zst
nixlib-e233a9d4dd1484d2b79e496d45f5e785642638ef.zip
Merge #84442: staging-next branch
Diffstat (limited to 'pkgs/development/tools/misc/automake')
-rw-r--r--pkgs/development/tools/misc/automake/automake-1.16.x.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/automake/automake-1.16.x.nix b/pkgs/development/tools/misc/automake/automake-1.16.x.nix
index 4b6225731934..d6353fc0b9cf 100644
--- a/pkgs/development/tools/misc/automake/automake-1.16.x.nix
+++ b/pkgs/development/tools/misc/automake/automake-1.16.x.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, perl, autoconf }:
 
 stdenv.mkDerivation rec {
-  name = "automake-1.16.1";
+  name = "automake-1.16.2";
 
   src = fetchurl {
     url = "mirror://gnu/automake/${name}.tar.xz";
-    sha256 = "08g979ficj18i1w6w5219bgmns7czr03iadf20mk3lrzl8wbn1ax";
+    sha256 = "1l7dkqbsmbf94ax29jj1jf6a0r6ikc8jybg1p5m0c3ki7pg5ki6c";
   };
 
   nativeBuildInputs = [ autoconf perl ];
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
   dontPatchShebangs = true;
 
   meta = {
-    branch = "1.15";
+    branch = "1.16";
     homepage = "https://www.gnu.org/software/automake/";
     description = "GNU standard-compliant makefile generator";
     license = stdenv.lib.licenses.gpl2Plus;