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

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;