From 97d1ddccdf6ff1ac03001001b3a445ff74641eb2 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 11 Apr 2024 11:26:11 +0300 Subject: [PATCH] crate2nix: 0.12.0 -> 0.14.0 According to https://github.com/nix-community/crate2nix/releases, 0.13.0 contained mostly internal version updates and flake-specific workflows irrelevant to this package build. 0.14.0 however contains https://github.com/nix-community/crate2nix/ issues/340, which contains a fix for Cargo.lock file changes from Rust 1.77. --- pkgs/development/tools/rust/crate2nix/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/rust/crate2nix/default.nix b/pkgs/development/tools/rust/crate2nix/default.nix index a19c47271c57..175e79e639c3 100644 --- a/pkgs/development/tools/rust/crate2nix/default.nix +++ b/pkgs/development/tools/rust/crate2nix/default.nix @@ -10,18 +10,18 @@ rustPlatform.buildRustPackage rec { pname = "crate2nix"; - version = "0.12.0"; + version = "0.14.0"; src = fetchFromGitHub { owner = "nix-community"; repo = pname; rev = version; - sha256 = "sha256-A9AowkHIjsy1a4LuiPiVP88FMxyCWK41flZEZOUuwQM="; + hash = "sha256-rGT3CW64cJS9nlnWPFWSc1iEa3dNZecVVuPVGzcsHe8="; }; sourceRoot = "${src.name}/crate2nix"; - cargoHash = "sha256-85OIOhRdVDu5hZuBzanyqkH1gOuF5IQGubVrLAqt1ak="; + cargoHash = "sha256-YoE6wrQNQcRo/yaiVpASU2VOmHCPM4pDgTejn0ovOVY="; nativeBuildInputs = [ makeWrapper ];