about summary refs log tree commit diff
path: root/pkgs/development/tools/rust/crate2nix
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2024-04-11 11:26:11 +0300
committerFlorian Klink <flokli@flokli.de>2024-04-11 11:26:11 +0300
commit97d1ddccdf6ff1ac03001001b3a445ff74641eb2 (patch)
tree1df43b4989fd594b0415979a039c461a11a3cb2b /pkgs/development/tools/rust/crate2nix
parentf1e4c7a12aba0223e1f19757e1483d848f578ebe (diff)
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.
Diffstat (limited to 'pkgs/development/tools/rust/crate2nix')
-rw-r--r--pkgs/development/tools/rust/crate2nix/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/crate2nix/default.nix b/pkgs/development/tools/rust/crate2nix/default.nix
index a19c47271c57f..175e79e639c34 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 ];