From d376da366db0d2e2ad39d151ec627a97bb27c0a4 Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 3 Jan 2023 14:56:47 -0500 Subject: [PATCH] nurl: 0.3.1 -> 0.3.3 Diff: https://github.com/nix-community/nurl/compare/v0.3.1...v0.3.3 Changelog: https://github.com/nix-community/nurl/blob/v0.3.3/CHANGELOG.md --- pkgs/tools/misc/nurl/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/nurl/default.nix b/pkgs/tools/misc/nurl/default.nix index 6f0cf9bdfefa..b716e279404e 100644 --- a/pkgs/tools/misc/nurl/default.nix +++ b/pkgs/tools/misc/nurl/default.nix @@ -10,22 +10,25 @@ rustPlatform.buildRustPackage rec { pname = "nurl"; - version = "0.3.1"; + version = "0.3.3"; src = fetchFromGitHub { owner = "nix-community"; repo = "nurl"; rev = "v${version}"; - hash = "sha256-fLa9gNdwBOSOMisU1UI8KAKGOkDN13LZsBpH+bObqUM="; + hash = "sha256-bZJlhGbRjhrLk8J0WJq3NCY71MZYsxy8f1ippguOsIM="; }; - cargoSha256 = "sha256-vyhsZYYSpR2qbwTXOw8e1DFRQ78RVHktK6zCbiXT7RI="; + cargoSha256 = "sha256-904IOaovvSOuMyXIxZjaG2iqUoz5qq3hftLGaiA8h0U="; nativeBuildInputs = [ installShellFiles makeWrapper ]; + # tests require internet access + doCheck = false; + postInstall = '' wrapProgram $out/bin/nurl \ --prefix PATH : ${lib.makeBinPath [ gitMinimal mercurial nix ]}