From 478ce8c1e31ed88e01fb404f812ede807ab3ce3f Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 10 Jan 2023 20:52:13 -0500 Subject: [PATCH] nurl: 0.3.3 -> 0.3.4 Diff: https://github.com/nix-community/nurl/compare/v0.3.3...v0.3.4 Changelog: https://github.com/nix-community/nurl/blob/v0.3.4/CHANGELOG.md --- pkgs/tools/misc/nurl/default.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/nurl/default.nix b/pkgs/tools/misc/nurl/default.nix index b716e279404..60b27d17823 100644 --- a/pkgs/tools/misc/nurl/default.nix +++ b/pkgs/tools/misc/nurl/default.nix @@ -3,6 +3,8 @@ , fetchFromGitHub , installShellFiles , makeWrapper +, stdenv +, darwin , gitMinimal , mercurial , nix @@ -10,22 +12,26 @@ rustPlatform.buildRustPackage rec { pname = "nurl"; - version = "0.3.3"; + version = "0.3.4"; src = fetchFromGitHub { owner = "nix-community"; repo = "nurl"; rev = "v${version}"; - hash = "sha256-bZJlhGbRjhrLk8J0WJq3NCY71MZYsxy8f1ippguOsIM="; + hash = "sha256-cPbvYrMeARNi9b97EPUUzYN5j0YjenOCDdrdRVLBviw="; }; - cargoSha256 = "sha256-904IOaovvSOuMyXIxZjaG2iqUoz5qq3hftLGaiA8h0U="; + cargoSha256 = "sha256-CBZe3UdTucgWrCzbXCSWjBjCNWCFUHmCpRwCXUX2sA8="; nativeBuildInputs = [ installShellFiles makeWrapper ]; + buildInputs = lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.Security + ]; + # tests require internet access doCheck = false;