Merge pull request #116070 from midchildan/fix/wget-darwin

wget: fix darwin build
This commit is contained in:
Dmitry Kalinkin 2021-03-12 12:04:29 -05:00 committed by GitHub
commit 7744067c02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;