From 07b7aa1f38a16055ceecaddf71ba4cb521d78342 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 4 Apr 2012 08:59:03 +0000 Subject: [PATCH] * Revert r33558, it breaks various packages (see e.g. http://hydra.nixos.org/build/2363689). svn path=/nixpkgs/branches/stdenv-updates/; revision=33560 --- pkgs/development/tools/misc/automake/automake-1.11.x.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/misc/automake/automake-1.11.x.nix b/pkgs/development/tools/misc/automake/automake-1.11.x.nix index e2507432151..65ef3a9a146 100644 --- a/pkgs/development/tools/misc/automake/automake-1.11.x.nix +++ b/pkgs/development/tools/misc/automake/automake-1.11.x.nix @@ -1,7 +1,7 @@ {stdenv, fetchurl, perl, autoconf, makeWrapper, doCheck ? true}: stdenv.mkDerivation rec { - name = "automake-1.11.4"; + name = "automake-1.11.2"; # TODO: Remove the `aclocal' wrapper when $ACLOCAL_PATH support is # available upstream; see @@ -11,8 +11,8 @@ stdenv.mkDerivation rec { setupHook = ./setup-hook.sh; src = fetchurl { - url = "mirror://gnu/automake/${name}.tar.xz"; - sha256 = "0q39igxz41nlhjhq81gjgjxchcia3scs585sszswlp2ldd8h6ap5"; + url = "mirror://gnu/automake/${name}.tar.bz2"; + sha256 = "06476qbd16dlasz29drmljqmr4gwx4qgcl075033b2hc73wx2ijg"; }; buildInputs = [perl autoconf makeWrapper];