Skip to content

Commit

Permalink
curl: enable gssSupport in non-fetchurl builds
Browse files Browse the repository at this point in the history
  • Loading branch information
catern committed Oct 8, 2017
1 parent 7535385 commit 68432fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down Expand Up @@ -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 { };
Expand Down

0 comments on commit 68432fd

Please sign in to comment.