From 769aa398a54df4e2905a8463b19f207e2d80552d Mon Sep 17 00:00:00 2001 From: midchildan Date: Sat, 13 Mar 2021 01:05:33 +0900 Subject: [PATCH] wget: fix darwin build Fixes #116035. --- pkgs/tools/networking/wget/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/networking/wget/default.nix b/pkgs/tools/networking/wget/default.nix index 3427cd186c3..efdd16e630b 100644 --- a/pkgs/tools/networking/wget/default.nix +++ b/pkgs/tools/networking/wget/default.nix @@ -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;