···1-{ stdenv, fetchurl, perl, autoconf, doCheck ? false }:
23stdenv.mkDerivation rec {
4 name = "automake-1.16.1";
···16 # Disable indented log output from Make, otherwise "make.test" will
17 # fail.
18 preCheck = "unset NIX_INDENT_MAKE";
19- inherit doCheck;
02021 # The test suite can run in parallel.
22 enableParallelBuilding = true;
···1+{ stdenv, fetchurl, perl, autoconf }:
23stdenv.mkDerivation rec {
4 name = "automake-1.16.1";
···16 # Disable indented log output from Make, otherwise "make.test" will
17 # fail.
18 preCheck = "unset NIX_INDENT_MAKE";
19+ doCheck = false; # takes _a lot_ of time, fails 3 out of 2698 tests, all seem to be related to paths
20+ doInstallCheck = false; # runs the same thing, fails the same tests
2122 # The test suite can run in parallel.
23 enableParallelBuilding = true;