summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-03-16 21:52:59 +0100
committerVladimír Čunát <vcunat@gmail.com>2015-03-16 21:52:59 +0100
commit51a8a43dfc3214d0f7db1f01ef95eaa26a266025 (patch)
treeff088a954bac0cfbba053961fc161119ae893739 /pkgs/development
parenteaa362db6e688954fbe934db532da473c2c6550c (diff)
parentf41f7a0bb9a0ce5f728302f72e3438b7f373d26b (diff)
downloadnixpkgs-51a8a43dfc3214d0f7db1f01ef95eaa26a266025.tar
nixpkgs-51a8a43dfc3214d0f7db1f01ef95eaa26a266025.tar.gz
nixpkgs-51a8a43dfc3214d0f7db1f01ef95eaa26a266025.tar.bz2
nixpkgs-51a8a43dfc3214d0f7db1f01ef95eaa26a266025.tar.lz
nixpkgs-51a8a43dfc3214d0f7db1f01ef95eaa26a266025.tar.xz
nixpkgs-51a8a43dfc3214d0f7db1f01ef95eaa26a266025.tar.zst
nixpkgs-51a8a43dfc3214d0f7db1f01ef95eaa26a266025.zip
Merge #6472: add ddccontrol
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/misc/automake/automake-1.10.x.nix46
1 files changed, 46 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 00000000000..a06426e9cf4
--- /dev/null
+++ b/pkgs/development/tools/misc/automake/automake-1.10.x.nix
@@ -0,0 +1,46 @@
+{ stdenv, fetchurl, perl, autoconf, makeWrapper }:
+
+stdenv.mkDerivation rec {
+  name = "automake-1.10.3";
+
+  # TODO: Remove the `aclocal' wrapper when $ACLOCAL_PATH support is
+  # available upstream; see
+  # <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9026>.
+  builder = ./builder.sh;
+
+  setupHook = ./setup-hook.sh;
+
+  src = fetchurl {
+    url = "mirror://gnu/automake/${name}.tar.gz";
+    sha256 = "fda9b22ec8705780c8292510b3376bb45977f45a4f7eb3578c5ad126d7758028";
+  };
+
+  buildInputs = [perl autoconf makeWrapper];
+
+  # Disable indented log output from Make, otherwise "make.test" will
+  # fail.
+  preCheck = "unset NIX_INDENT_MAKE";
+
+  # Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
+  # "fixed" path in generated files!
+  dontPatchShebangs = true;
+
+  # Run the test suite in parallel.
+  enableParallelBuilding = true;
+
+  meta = {
+    branch = "1.10";
+    homepage = http://www.gnu.org/software/automake/;
+    description = "GNU standard-compliant makefile generator";
+
+    longDescription = ''
+      GNU Automake is a tool for automatically generating
+      `Makefile.in' files compliant with the GNU Coding
+      Standards.  Automake requires the use of Autoconf.
+    '';
+
+    license = stdenv.lib.licenses.gpl2Plus;
+
+    maintainers = [ ];
+  };
+}