diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-02-14 16:40:16 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-02-14 16:40:16 +0100 |
commit | c8ce2b7862eb273ed81cd399490e0536b2965a20 (patch) | |
tree | 7d8f94ef0d5075847858ed792f0707c90cf4653d | |
parent | feat(yt): Make colorization of the output configurable (diff) | |
download | yt-c8ce2b7862eb273ed81cd399490e0536b2965a20.zip |
fix(package/blake3): Migrate to the new `fetchCargoVendor` fetcher
This is necessary, because the old `fetchCargoTarball` fetcher, has become not reproducible because of `cargo` changes.
-rw-r--r-- | package/blake3/blake3.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/blake3/blake3.nix b/package/blake3/blake3.nix index 74a393b..3965112 100644 --- a/package/blake3/blake3.nix +++ b/package/blake3/blake3.nix @@ -27,9 +27,9 @@ python3Packages.buildPythonPackage rec { ./add_cargo_lock.patch ]; - cargoDeps = rustPlatform.fetchCargoTarball { + cargoDeps = rustPlatform.fetchCargoVendor { inherit src patches; - hash = "sha256-GwyGSdmJTgsHWfcS2n2FCFrlwRcuANM8/WteYTTyY6o="; + hash = "sha256-Woz0f869td1SyRaVw6qVpBW4aJC/5M/tkmxgLR6HDN4="; }; format = "pyproject"; |