Commit 97d1ddcc authored by Florian Klink's avatar Florian Klink
Browse files

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.
parent f1e4c7a1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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 ];