summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-08-10 03:22:32 +0000
committerJan Malakhovski <oxij@oxij.org>2018-08-11 09:35:18 +0000
commit9bab07e54109a71ac2be21f2d048df7cac63daf6 (patch)
tree9e6b7ad82edbf57dfd26bf5f2e33f178f2c164c3 /pkgs/development/tools
parent995c506a30a610e9a40c5b3ad6a0d5e733c20631 (diff)
downloadnixlib-9bab07e54109a71ac2be21f2d048df7cac63daf6.tar
nixlib-9bab07e54109a71ac2be21f2d048df7cac63daf6.tar.gz
nixlib-9bab07e54109a71ac2be21f2d048df7cac63daf6.tar.bz2
nixlib-9bab07e54109a71ac2be21f2d048df7cac63daf6.tar.lz
nixlib-9bab07e54109a71ac2be21f2d048df7cac63daf6.tar.xz
nixlib-9bab07e54109a71ac2be21f2d048df7cac63daf6.tar.zst
nixlib-9bab07e54109a71ac2be21f2d048df7cac63daf6.zip
automake111x: disable tests, also cleanup
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/automake/automake-1.11.x.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/automake/automake-1.11.x.nix b/pkgs/development/tools/misc/automake/automake-1.11.x.nix
index 0a3316005236..8f437af0ada8 100644
--- a/pkgs/development/tools/misc/automake/automake-1.11.x.nix
+++ b/pkgs/development/tools/misc/automake/automake-1.11.x.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, perl, autoconf, makeWrapper }:
+{ stdenv, fetchurl, perl, autoconf }:
 
 stdenv.mkDerivation rec {
   name = "automake-1.11.6";
@@ -17,11 +17,12 @@ stdenv.mkDerivation rec {
 
   patches = [ ./fix-test-autoconf-2.69.patch ./fix-perl-5.26.patch ];
 
-  buildInputs = [perl autoconf makeWrapper];
+  buildInputs = [ perl autoconf ];
 
   # Disable indented log output from Make, otherwise "make.test" will
   # fail.
   preCheck = "unset NIX_INDENT_MAKE";
+  doCheck = false; # takes _a lot_ of time, fails 11 of 782 tests
 
   # Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
   # "fixed" path in generated files!