cargo-clone: 1.2.1 -> 1.2.3

Due to a breaking change in Rust compiler 1.80.0 cargo-clone cannot be built.
See NixOS/nixpkgs#332957.

Version 1.2.3 includes a fix for this issue and several cargo-clone dependency updates.
Changelog: https://github.com/JanLikar/cargo-clone/blob/v1.2.3/CHANGELOG.md
This commit is contained in:
Jan Likar 2024-08-24 19:32:33 +02:00 committed by Alyssa Ross
parent de1be8cdb4
commit 4e2fc88076

View File

@ -11,16 +11,16 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-clone";
version = "1.2.1";
version = "1.2.3";
src = fetchFromGitHub {
owner = "janlikar";
repo = pname;
rev = "v${version}";
sha256 = "sha256-al+C3p9jzPbykflt3WN+SibHm/AN4BdTxuTGmFiGGrE=";
sha256 = "sha256-kK0J1Vfx1T17CgZ3DV9kQbAUxk4lEfje5p6QvdBS5VQ=";
};
cargoHash = "sha256-sQVjK6i+wXwOfQMvnatl6PQ1S+91I58YEtRjzjSNNo8=";
cargoHash = "sha256-6UUaOwu6N/XFdGEnoAX5zM4xTsqwHwPrmZ1t5huF6nM=";
nativeBuildInputs = [ pkg-config ];