coreutils: Do not autoreconfHook on Musl

as suggested by @tobim, fixes #108661
This commit is contained in:
Joachim Breitner 2021-01-07 17:12:21 +01:00 committed by Alyssa Ross
parent ba410c2647
commit a00f391174

View file

@ -76,8 +76,7 @@ stdenv.mkDerivation (rec {
outputs = [ "out" "info" ];
nativeBuildInputs = [ perl xz.bin ]
++ optionals stdenv.hostPlatform.isCygwin [ autoreconfHook texinfo ] # due to patch
++ optionals stdenv.hostPlatform.isMusl [ autoreconfHook bison ]; # due to patch
++ optionals stdenv.hostPlatform.isCygwin [ autoreconfHook texinfo ]; # due to patch
configureFlags = [ "--with-packager=https://NixOS.org" ]
++ optional (singleBinary != false)
("--enable-single-binary" + optionalString (isString singleBinary) "=${singleBinary}")