Skip to content

Commit

Permalink
curl: 7.54.1 -> 7.55.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fpletz committed Aug 10, 2017
1 parent c3e8d49 commit b44bed5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkgs/tools/networking/curl/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ assert scpSupport -> libssh2 != null;
assert c-aresSupport -> c-ares != null;

stdenv.mkDerivation rec {
name = "curl-7.54.1";
name = "curl-7.55.0";

src = fetchurl {
url = "http://curl.haxx.se/download/${name}.tar.bz2";
sha256 = "1815iz5a7qghipjcl7s97hk4jqh4f3kqc487xi20rvh1s3r4vz7x";
sha256 = "1cg5h0klsx887qd4wpkk5bpkbw1bfc4q7adsrai71zhmdzn6j7dg";
};

outputs = [ "bin" "dev" "out" "man" "devdoc" ];
Expand Down Expand Up @@ -72,6 +72,10 @@ stdenv.mkDerivation rec {
CXXCPP = "g++ -E";

postInstall = ''
pushd docs/libcurl
make install
popd
moveToOutput bin/curl-config "$dev"
sed '/^dependency_libs/s|${libssh2.dev}|${libssh2.out}|' -i "$out"/lib/*.la
'' + stdenv.lib.optionalString gnutlsSupport ''
Expand Down

0 comments on commit b44bed5

Please sign in to comment.