From 94f03a0c81e6573c8de39ca8a73da4bbdfb39d0c Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Wed, 25 Oct 2023 23:09:59 +0530 Subject: [PATCH] cargo-dist: 0.3.1 -> 0.4.0 Diff: https://github.com/axodotdev/cargo-dist/compare/v0.3.1...v0.4.0 Changelog: https://github.com/axodotdev/cargo-dist/blob/v0.4.0/CHANGELOG.md --- pkgs/development/tools/rust/cargo-dist/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/rust/cargo-dist/default.nix b/pkgs/development/tools/rust/cargo-dist/default.nix index 22466ca34bdc..075363057bc8 100644 --- a/pkgs/development/tools/rust/cargo-dist/default.nix +++ b/pkgs/development/tools/rust/cargo-dist/default.nix @@ -13,16 +13,16 @@ rustPlatform.buildRustPackage rec { pname = "cargo-dist"; - version = "0.3.1"; + version = "0.4.0"; src = fetchFromGitHub { owner = "axodotdev"; repo = "cargo-dist"; rev = "v${version}"; - hash = "sha256-h3ga4H9gIS3H6krPqXyYHMIhlxFQPbEfZV8cpQWWhpw="; + hash = "sha256-Y4dCkyOAOQRnaHWMuPTpjgIqlnzYw+sQbTyxp1pO7oo="; }; - cargoHash = "sha256-RP4/bcKA+5tjBFkR6DGNUPLpi/1fZAsRZeLMRSg1aes="; + cargoHash = "sha256-Fuc5lToojwcRbcKrApQ8vxd8ZdjEJTDQULYfzV4K4GA="; nativeBuildInputs = [ pkg-config @@ -38,7 +38,6 @@ rustPlatform.buildRustPackage rec { nativeCheckInputs = [ git - ] ++ lib.optionals stdenv.isDarwin [ rustup ];