lol

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.

+3 -3
+3 -3
pkgs/development/tools/rust/crate2nix/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "crate2nix"; 13 - version = "0.12.0"; 13 + version = "0.14.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "nix-community"; 17 17 repo = pname; 18 18 rev = version; 19 - sha256 = "sha256-A9AowkHIjsy1a4LuiPiVP88FMxyCWK41flZEZOUuwQM="; 19 + hash = "sha256-rGT3CW64cJS9nlnWPFWSc1iEa3dNZecVVuPVGzcsHe8="; 20 20 }; 21 21 22 22 sourceRoot = "${src.name}/crate2nix"; 23 23 24 - cargoHash = "sha256-85OIOhRdVDu5hZuBzanyqkH1gOuF5IQGubVrLAqt1ak="; 24 + cargoHash = "sha256-YoE6wrQNQcRo/yaiVpASU2VOmHCPM4pDgTejn0ovOVY="; 25 25 26 26 nativeBuildInputs = [ makeWrapper ]; 27 27