From cb6d46b993b32a8a2378014ac242273bc8c9b7ba Mon Sep 17 00:00:00 2001 From: figsoda Date: Thu, 4 May 2023 10:47:01 -0400 Subject: [PATCH] hurl: 2.0.1 -> 3.0.0 Diff: https://github.com/Orange-OpenSource/hurl/compare/2.0.1...3.0.0 Changelog: https://github.com/Orange-OpenSource/hurl/blob/3.0.0/CHANGELOG.md --- pkgs/tools/networking/hurl/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/networking/hurl/default.nix b/pkgs/tools/networking/hurl/default.nix index 5b598bba1d2..ed1b38d8f85 100644 --- a/pkgs/tools/networking/hurl/default.nix +++ b/pkgs/tools/networking/hurl/default.nix @@ -11,15 +11,17 @@ rustPlatform.buildRustPackage rec { pname = "hurl"; - version = "2.0.1"; + version = "3.0.0"; src = fetchFromGitHub { owner = "Orange-OpenSource"; repo = pname; rev = version; - sha256 = "sha256-sY2bSCcC+mMuYqLmh+oH76nqg/ybh/nyz3trNH2xPQM="; + hash = "sha256-m9hAGm5vmo+J+ntQOK5R4vFEVRhW097D1gvjcE/1CnM="; }; + cargoHash = "sha256-KYlax3Q7w27Q6TNwuDmzJhoiFMWnfMhagAuw0+FIW1c="; + nativeBuildInputs = [ pkg-config installShellFiles @@ -35,8 +37,6 @@ rustPlatform.buildRustPackage rec { # Tests require network access to a test server doCheck = false; - cargoSha256 = "sha256-Zv7TTQw4UcuQBhEdjD5nwcE1LonUHLUFf9BVhRWWuDo="; - postInstall = '' installManPage docs/manual/hurl.1 docs/manual/hurlfmt.1 ''; @@ -44,7 +44,7 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "Command line tool that performs HTTP requests defined in a simple plain text format."; homepage = "https://hurl.dev/"; - changelog = "https://github.com/Orange-OpenSource/hurl/raw/${version}/CHANGELOG.md"; + changelog = "https://github.com/Orange-OpenSource/hurl/blob/${version}/CHANGELOG.md"; maintainers = with maintainers; [ eonpatapon figsoda ]; license = licenses.asl20; };