lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

coreutils: use autoreconfHook

+2 -2
+2 -2
pkgs/tools/misc/coreutils/default.nix
··· 1 1 { stdenv, lib, buildPackages 2 - , autoconf, automake114x, texinfo, fetchurl, perl, xz, libiconv, gmp ? null 2 + , autoreconfHook, texinfo, fetchurl, perl, xz, libiconv, gmp ? null 3 3 , hostPlatform, buildPlatform 4 4 , aclSupport ? false, acl ? null 5 5 , attrSupport ? false, attr ? null ··· 56 56 buildInputs = [ gmp ] 57 57 ++ optional aclSupport acl 58 58 ++ optional attrSupport attr 59 - ++ optionals hostPlatform.isCygwin [ autoconf automake114x texinfo ] # due to patch 59 + ++ optionals hostPlatform.isCygwin [ autoreconfHook texinfo ] # due to patch 60 60 ++ optionals selinuxSupport [ libselinux libsepol ] 61 61 # TODO(@Ericson2314): Investigate whether Darwin could benefit too 62 62 ++ optional (hostPlatform != buildPlatform && hostPlatform.libc != "glibc") libiconv;