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.
This commit is contained in:
Florian Klink 2024-04-11 11:26:11 +03:00
parent f1e4c7a12a
commit 97d1ddccdf
1 changed files with 3 additions and 3 deletions

View File

@ -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 ];