Skip to content

Commit

Permalink
curl: 8.9.1 -> 8.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LeSuisse committed Sep 11, 2024
1 parent d1d2419 commit 559bfa4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 40 deletions.
10 changes: 2 additions & 8 deletions pkgs/tools/networking/curl/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -49,22 +49,16 @@ assert !((lib.count (x: x) [ gnutlsSupport opensslSupport wolfsslSupport rustlsS

stdenv.mkDerivation (finalAttrs: {
pname = "curl";
version = "8.9.1";
version = "8.10.0";

src = fetchurl {
urls = [
"https://curl.haxx.se/download/curl-${finalAttrs.version}.tar.xz"
"https://github.com/curl/curl/releases/download/curl-${builtins.replaceStrings [ "." ] [ "_" ] finalAttrs.version}/curl-${finalAttrs.version}.tar.xz"
];
hash = "sha256-8pL2zAUdW7q/cl74XUMt/qzIcR3XF+qXYSrlkGQ4AeU=";
hash = "sha256-5rFC8OhelUdZ034mo2J+IngTdZW+gOOoYMQ1PkM15aA=";
};

patches = [
# fixes https://github.com/curl/curl/issues/14344
# https://github.com/curl/curl/pull/14390
./fix-sigpipe-leak.patch
];

# this could be accomplished by updateAutotoolsGnuConfigScriptsHook, but that causes infinite recursion
# necessary for FreeBSD code path in configure
postPatch = ''
Expand Down
32 changes: 0 additions & 32 deletions pkgs/tools/networking/curl/fix-sigpipe-leak.patch

This file was deleted.

0 comments on commit 559bfa4

Please sign in to comment.