From 68432fd1c99f3cad303ce2ba495419c762e93d96 Mon Sep 17 00:00:00 2001 From: Spencer Baugh Date: Mon, 25 Sep 2017 20:00:34 +0000 Subject: [PATCH] curl: enable gssSupport in non-fetchurl builds --- pkgs/top-level/all-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f9183ad14a7..d6631d36074 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -179,7 +179,8 @@ with pkgs; # `fetchurl' downloads a file from the network. fetchurl = import ../build-support/fetchurl { - inherit curl stdenv; + inherit stdenv; + curl = curl.override { gssSupport = false; }; }; fetchRepoProject = callPackage ../build-support/fetchrepoproject { }; @@ -1613,6 +1614,7 @@ with pkgs; zlibSupport = true; sslSupport = zlibSupport; scpSupport = zlibSupport && !stdenv.isSunOS && !stdenv.isCygwin; + gssSupport = true; }; curl_unix_socket = callPackage ../tools/networking/curl-unix-socket rec { };