Commit 4abf4c91 authored by Alyssa Ross's avatar Alyssa Ross
Browse files

clash-verge-rev: useFetchCargoVendor

Cargo 1.84.0 seems to have changed the output format of cargo vendor
again, once again invalidating fetchCargoTarball FOD hashes.  It's
time to fix this once and for all, switching across the board to
fetchCargoVendor, which is not dependent on cargo vendor's output
format.
parent 0c3f6ec4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ let
    hash = "sha256-kZf5O3n0xmNUN0G4hAWQDN9Oj9K7PtLpv6jnhh1C5Hg=";
  };

  service-cargo-hash = "sha256-uo/2QBsZzoTdwRiW0Kr7GGiQCpQH4lW4h5XHqWd5sTU=";
  service-cargo-hash = "sha256-Sof0jnU5+IGWMmbqVqJmhUzDO6CRlFpwwzYx9Z5tZbk=";

  service = callPackage ./service.nix {
    inherit
+1 −0
Original line number Diff line number Diff line
@@ -27,5 +27,6 @@ rustPlatform.buildRustPackage {
    OPENSSL_NO_VENDOR = 1;
  };

  useFetchCargoVendor = true;
  cargoHash = service-cargo-hash;
}