Commit 4e2fc880 authored by Jan Likar's avatar Jan Likar Committed by Alyssa Ross
Browse files

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