about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/misc/automake/automake-1.10.x.nix12
1 files changed, 12 insertions, 0 deletions
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 000000000000..11b64307de65
--- /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];
+}