tangled
alpha
login
or
join now
ptr.pet
/
faunu
2
fork
atom
nushell on your web browser
nushell
wasm
terminal
2
fork
atom
overview
issues
pulls
pipelines
use wasm-bindgen 0.2.104 from nixpkgs
ptr.pet
3 months ago
2a6c2efa
5356d2f6
verified
This commit was signed with the committer's
known signature
.
ptr.pet
SSH Key Fingerprint:
SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw=
+3
-3
2 changed files
expand all
collapse all
unified
split
flake.nix
nix
wasm.nix
+1
-1
flake.nix
···
23
23
nodejs-slim_latest deno
24
24
nodePackages.svelte-language-server
25
25
nodePackages.typescript-language-server
26
26
-
rustc rust-analyzer cargo wasm-pack wasm-bindgen-cli lld rustfmt binaryen
26
26
+
rustc rust-analyzer cargo wasm-pack wasm-bindgen-cli_0_2_104 lld rustfmt binaryen
27
27
];
28
28
shellHook = ''
29
29
export PATH="$PATH:$PWD/node_modules/.bin"
+2
-2
nix/wasm.nix
···
3
3
lib,
4
4
wasm-pack,
5
5
binaryen,
6
6
-
wasm-bindgen-cli,
6
6
+
wasm-bindgen-cli_0_2_104,
7
7
lld,
8
8
stdenv,
9
9
...
···
34
34
};
35
35
};
36
36
37
37
-
nativeBuildInputs = [wasm-pack wasm-bindgen-cli lld];
37
37
+
nativeBuildInputs = [wasm-pack wasm-bindgen-cli_0_2_104 lld];
38
38
39
39
phases = ["unpackPhase" "buildPhase"];
40
40