diff --git a/pkgs/development/tools/misc/automake/automake-1.10.x.nix b/pkgs/development/tools/misc/automake/automake-1.10.x.nix new file mode 100644 index 00000000000..11b64307de6 --- /dev/null +++ b/pkgs/development/tools/misc/automake/automake-1.10.x.nix @@ -0,0 +1,12 @@ +{stdenv, fetchurl, perl, autoconf}: + +stdenv.mkDerivation { + name = "automake-1.10"; + builder = ./builder.sh; + setupHook = ./setup-hook.sh; + src = fetchurl { + url = ftp://ftp.nluug.nl/pub/gnu/automake/automake-1.10.tar.bz2; + md5 = "0e2e0f757f9e1e89b66033905860fded"; + }; + buildInputs = [perl autoconf]; +}