about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/automake
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2013-11-23 21:18:37 -0500
committerShea Levy <shea@shealevy.com>2013-11-23 21:18:37 -0500
commit7ab7be0cc33ef4b788d6b069a8a709b0d30ed8c4 (patch)
treec17e4d43c398a1d2fdd9e37f38ac919b6d8eada4 /pkgs/development/tools/misc/automake
parent7f791a6449d5a0f9271b06f1d1ba301c988270ab (diff)
downloadnixlib-7ab7be0cc33ef4b788d6b069a8a709b0d30ed8c4.tar
nixlib-7ab7be0cc33ef4b788d6b069a8a709b0d30ed8c4.tar.gz
nixlib-7ab7be0cc33ef4b788d6b069a8a709b0d30ed8c4.tar.bz2
nixlib-7ab7be0cc33ef4b788d6b069a8a709b0d30ed8c4.tar.lz
nixlib-7ab7be0cc33ef4b788d6b069a8a709b0d30ed8c4.tar.xz
nixlib-7ab7be0cc33ef4b788d6b069a8a709b0d30ed8c4.tar.zst
nixlib-7ab7be0cc33ef4b788d6b069a8a709b0d30ed8c4.zip
Add automake 1.14
Signed-off-by: Shea Levy <shea@shealevy.com>
Diffstat (limited to 'pkgs/development/tools/misc/automake')
-rw-r--r--pkgs/development/tools/misc/automake/automake-1.14.x.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/automake/automake-1.14.x.nix b/pkgs/development/tools/misc/automake/automake-1.14.x.nix
new file mode 100644
index 000000000000..d6f8117f9b82
--- /dev/null
+++ b/pkgs/development/tools/misc/automake/automake-1.14.x.nix
@@ -0,0 +1,40 @@
+{ stdenv, fetchurl, perl, autoconf, makeWrapper, doCheck ? false }:
+
+stdenv.mkDerivation rec {
+  name = "automake-1.14";
+
+  src = fetchurl {
+    url = "mirror://gnu/automake/${name}.tar.xz";
+    sha256 = "0nc0zqq8j336kamizzd86wb19vhbwywv5avcjh3cyx230xfqy671";
+  };
+
+  buildInputs = [ perl autoconf ];
+
+  setupHook = ./setup-hook.sh;
+
+  # Disable indented log output from Make, otherwise "make.test" will
+  # fail.
+  preCheck = "unset NIX_INDENT_MAKE";
+  inherit doCheck;
+
+  # The test suite can run in parallel.
+  enableParallelBuilding = true;
+
+  # Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
+  # "fixed" path in generated files!
+  dontPatchShebangs = true;
+
+  meta = {
+    homepage = "http://www.gnu.org/software/automake/";
+    description = "GNU standard-compliant makefile generator";
+    license = "GPLv2+";
+
+    longDescription = ''
+      GNU Automake is a tool for automatically generating
+      `Makefile.in' files compliant with the GNU Coding
+      Standards.  Automake requires the use of Autoconf.
+    '';
+
+    maintainers = [ stdenv.lib.maintainers.ludo stdenv.lib.maintainers.simons ];
+  };
+}