wget: fix darwin build

Fixes #116035.
This commit is contained in:
midchildan 2021-03-13 01:05:33 +09:00
parent 4b6373aa2e
commit 769aa398a5
No known key found for this signature in database
GPG key ID: D9A5748BACC6E3C2

View file

@ -37,6 +37,9 @@ stdenv.mkDerivation rec {
configureFlags = [
(lib.withFeatureAs (openssl != null) "ssl" "openssl")
] ++ lib.optionals stdenv.isDarwin [
# https://lists.gnu.org/archive/html/bug-wget/2021-01/msg00076.html
"--without-included-regex"
];
doCheck = false;