Skip to content

Commit

Permalink
curl: 7.58.0 -> 7.59.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NeQuissimus committed Mar 15, 2018
1 parent 3ab2949 commit 837ecc2
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions pkgs/tools/networking/curl/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, perl
{ stdenv, lib, fetchurl, pkgconfig, perl
, http2Support ? true, nghttp2
, idnSupport ? false, libidn ? null
, ldapSupport ? false, openldap ? null
Expand All @@ -24,11 +24,14 @@ assert brotliSupport -> brotli != null;
assert gssSupport -> kerberos != null;

stdenv.mkDerivation rec {
name = "curl-7.58.0";
name = "curl-7.59.0";

src = fetchurl {
url = "https://curl.haxx.se/download/${name}.tar.bz2";
sha256 = "0cg7klhf1ksnbw5wvwa802qir877zv4y3dj7swz1xh07g3wq3c0w";
urls = [
"https://github.com/curl/curl/releases/download/${lib.replaceStrings ["."] ["_"] name}/${name}.tar.bz2"
"https://curl.haxx.se/download/${name}.tar.bz2"
];
sha256 = "185mazhi4bc5mc6rvhrmnc67j8l3sg7f0w2hp5gmi5ccdbyhz4mm";
};

outputs = [ "bin" "dev" "out" "man" "devdoc" ];
Expand Down

0 comments on commit 837ecc2

Please sign in to comment.