Add threema-desktop beta (wip)

This commit is contained in:
2025-10-28 15:19:07 +01:00
parent d4ae65bb30
commit 8e59f537c3
4 changed files with 105 additions and 7 deletions

19
wasm-bindgen-cli.nix Normal file
View File

@@ -0,0 +1,19 @@
{
buildWasmBindgenCli,
fetchCrate,
rustPlatform,
}:
buildWasmBindgenCli rec {
src = fetchCrate {
pname = "wasm-bindgen-cli";
version = "0.2.101";
hash = "sha256-txpbTzlrPSEktyT9kSpw4RXQoiSZHm9t3VxeRn//9JI=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit src;
inherit (src) pname version;
hash = "sha256-J+F9SqTpH3T0MbvlNKVyKnMachgn8UXeoTF0Pk3Xtnc=";
};
}