himalaya: fix useFetchCargoVendor

The script I ran to bulk migrate packages didn't account for cargoHash
being in a let, so here it just introduced an unused
useFetchCargoVendor binding rather than passing it to
buildRustPackage.

Fixes: 63bff8c132d1 ("treewide: migrate to fetchCargoVendor, batch 1")

+3 -2
+3 -2
pkgs/by-name/hi/himalaya/package.nix
··· 19 let 20 version = "1.1.0"; 21 hash = "sha256-gdrhzyhxRHZkALB3SG/aWOdA5iMYkel3Cjk5VBy3E4M="; 22 - useFetchCargoVendor = true; 23 - cargoHash = "sha256-1KtS/lzVUEDiDCo3b8RFDYeTMsbHk2tIdniFZfoTxYk="; 24 25 noDefaultFeatures = lib.warnIf 26 (args ? buildNoDefaultFeatures) ··· 44 repo = "himalaya"; 45 rev = "v${version}"; 46 }; 47 48 buildNoDefaultFeatures = noDefaultFeatures; 49 buildFeatures = features;
··· 19 let 20 version = "1.1.0"; 21 hash = "sha256-gdrhzyhxRHZkALB3SG/aWOdA5iMYkel3Cjk5VBy3E4M="; 22 + cargoHash = "sha256-ulqMjpW3UI509vs3jVHXAEQUhxU/f/hN8XiIo8UBRq8="; 23 24 noDefaultFeatures = lib.warnIf 25 (args ? buildNoDefaultFeatures) ··· 43 repo = "himalaya"; 44 rev = "v${version}"; 45 }; 46 + 47 + useFetchCargoVendor = true; 48 49 buildNoDefaultFeatures = noDefaultFeatures; 50 buildFeatures = features;