uiua,uiua-unstable: 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.

It /is/ definitely the same hash for both.
This commit is contained in:
Alyssa Ross
2025-01-24 22:36:47 +01:00
parent 040916e51c
commit a85d8f5f75
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -36,6 +36,7 @@ lib.fix (
rustPlatform.buildRustPackage rec {
pname = "uiua";
inherit (versionInfo) version cargoHash;
useFetchCargoVendor = true;
src = fetchFromGitHub {
owner = "uiua-lang";
+1 -1
View File
@@ -2,6 +2,6 @@ rec {
version = "0.14.1";
tag = version;
hash = "sha256-+FiJYxB2Lb1B7l9QEuB/XzdEYgJZmYAQpKimRIhWwhc=";
cargoHash = "sha256-0ZK87aX3akEPEXIsFrbOvTfhW24TZCuCcSVp+j8ylyg=";
cargoHash = "sha256-bDj7pvZORP1cc2PXd1W9TWptWCvIKW9TXzaQAmni6hg=";
updateScript = ./update-stable.sh;
}
+1 -1
View File
@@ -2,6 +2,6 @@ rec {
version = "0.14.1";
tag = version;
hash = "sha256-+FiJYxB2Lb1B7l9QEuB/XzdEYgJZmYAQpKimRIhWwhc=";
cargoHash = "sha256-0ZK87aX3akEPEXIsFrbOvTfhW24TZCuCcSVp+j8ylyg=";
cargoHash = "sha256-bDj7pvZORP1cc2PXd1W9TWptWCvIKW9TXzaQAmni6hg=";
updateScript = ./update-unstable.sh;
}