chore: tidy nix expressions

This commit is contained in:
2026-08-19 20:59:30 +02:00
parent 7e5dae50e1
commit 9edf42cf82
6 changed files with 154 additions and 87 deletions
+19
View File
@@ -0,0 +1,19 @@
{
fetchCrate,
buildWasmBindgenCli,
rustPlatform,
...
}:
buildWasmBindgenCli rec {
src = fetchCrate {
pname = "wasm-bindgen-cli";
version = "0.2.127";
hash = "sha256-di+qBAdd7pENLiIB9CoZoab+W5xeDoByMREcCGTSzWo=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit src;
inherit (src) pname version;
hash = "sha256-FTv2GZIAQs0ePdIZXIXil7JbZ6kIT05VG6vqC1qNFxQ=";
};
}