summary refs log tree commit diff
path: root/pkgs/development/tools/misc/automake
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-04-07 12:57:50 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-04-07 13:32:35 -0700
commit5872185250eecbbcd457bfac867bd8fd09943bfe (patch)
tree12d6579c539acde3a1ec50cd55998de2d90e1ca4 /pkgs/development/tools/misc/automake
parent3935b43992db44f46173cfbf549b9bf8b8dbc0d8 (diff)
downloadnixpkgs-5872185250eecbbcd457bfac867bd8fd09943bfe.tar
nixpkgs-5872185250eecbbcd457bfac867bd8fd09943bfe.tar.gz
nixpkgs-5872185250eecbbcd457bfac867bd8fd09943bfe.tar.bz2
nixpkgs-5872185250eecbbcd457bfac867bd8fd09943bfe.tar.lz
nixpkgs-5872185250eecbbcd457bfac867bd8fd09943bfe.tar.xz
nixpkgs-5872185250eecbbcd457bfac867bd8fd09943bfe.tar.zst
nixpkgs-5872185250eecbbcd457bfac867bd8fd09943bfe.zip
automake: Bump to 1.15
Diffstat (limited to 'pkgs/development/tools/misc/automake')
-rw-r--r--pkgs/development/tools/misc/automake/automake-1.15.x.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/automake/automake-1.15.x.nix b/pkgs/development/tools/misc/automake/automake-1.15.x.nix
new file mode 100644
index 00000000000..9db2375a5c6
--- /dev/null
+++ b/pkgs/development/tools/misc/automake/automake-1.15.x.nix
@@ -0,0 +1,43 @@
+{ stdenv, fetchurl, perl, autoconf, makeWrapper, doCheck ? false }:
+
+stdenv.mkDerivation rec {
+  name = "automake-1.15";
+
+  src = fetchurl {
+    url = "mirror://gnu/automake/${name}.tar.xz";
+    sha256 = "0dl6vfi2lzz8alnklwxzfz624b95hb1ipjvd3mk177flmddcf24r";
+  };
+
+  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 = {
+    branch = "1.15";
+    homepage = "http://www.gnu.org/software/automake/";
+    description = "GNU standard-compliant makefile generator";
+    license = stdenv.lib.licenses.gpl2Plus;
+
+    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.simons ];
+
+    platforms = stdenv.lib.platforms.all;
+  };
+}