From 9e5682b1fb14cbd3b97da6e27eb8ee3cd124df89 Mon Sep 17 00:00:00 2001 From: Zach <131615861+ZachDavies@users.noreply.github.com> Date: Thu, 28 Aug 2025 17:33:44 +0200 Subject: [PATCH] hurl: 6.1.1 -> 7.0.0 * hurl: hurl-0.6.1.1 -> hurl-7.0.0 https://github.com/Orange-OpenSource/hurl/releases/tag/7.0.0 , removed patch for 6.1.1 * hurl: added/removed neccessary libraries for hurl-7.0.0 --- pkgs/by-name/hu/hurl/package.nix | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/pkgs/by-name/hu/hurl/package.nix b/pkgs/by-name/hu/hurl/package.nix index cb664fcb30b4..0d59ebefa8a9 100644 --- a/pkgs/by-name/hu/hurl/package.nix +++ b/pkgs/by-name/hu/hurl/package.nix @@ -2,7 +2,6 @@ lib, rustPlatform, fetchFromGitHub, - fetchpatch2, pkg-config, installShellFiles, libxml2, @@ -13,30 +12,21 @@ rustPlatform.buildRustPackage rec { pname = "hurl"; - version = "6.1.1"; + version = "7.0.0"; src = fetchFromGitHub { owner = "Orange-OpenSource"; repo = "hurl"; tag = version; - hash = "sha256-NtvBw8Nb2eZN0rjVL/LPyIdY5hBJGnz/cDun6VvwYZE="; + hash = "sha256-dmPXI2RHEi/wcdVVwBRtBgNXyBXFnm44236pqYjxgBs="; }; - cargoHash = "sha256-WyNActmsHpr5fgN1a3X9ApEACWFVJMVoi4fBvKhGgZ0="; - - patches = [ - # Fix build with libxml-2.14, remove after next hurl release - # https://github.com/Orange-OpenSource/hurl/pull/3977 - (fetchpatch2 { - name = "fix-libxml_2_14"; - url = "https://github.com/Orange-OpenSource/hurl/commit/7c7b410c3017aeab0dfc74a6144e4cb8e186a10a.patch?full_index=1"; - hash = "sha256-XjnCRIMwzfgUMIhm6pQ90pzA+c2U0EuhyvLUZDsI2GI="; - }) - ]; + cargoHash = "sha256-1bZaSdMJe39cDEOoqW82zS5NvOlZDGe1ia56BjXddyc="; nativeBuildInputs = [ pkg-config installShellFiles + rustPlatform.bindgenHook ]; buildInputs = [