mirror of
https://github.com/zaphar/kitchen.git
synced 2025-07-22 19:40:14 -04:00
Include wasm-bindgen in devShell
This commit is contained in:
parent
992f4248b2
commit
85c89b1754
@ -82,7 +82,7 @@
|
|||||||
program = "${kitchen}/bin/kitchen";
|
program = "${kitchen}/bin/kitchen";
|
||||||
};
|
};
|
||||||
devShell = pkgs.callPackage ./nix/devShell/default.nix {
|
devShell = pkgs.callPackage ./nix/devShell/default.nix {
|
||||||
inherit rust-wasm;
|
inherit rust-wasm wasm-bindgen;
|
||||||
wasm-pack-hermetic = wasm-pack;
|
wasm-pack-hermetic = wasm-pack;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
let
|
let
|
||||||
lib = import ../lib/lib.nix;
|
lib = import ../lib/lib.nix;
|
||||||
in
|
in
|
||||||
{ pkgs, rust-wasm, wasm-pack-hermetic }:
|
{ pkgs, rust-wasm, wasm-pack-hermetic, wasm-bindgen }:
|
||||||
with pkgs;
|
with pkgs;
|
||||||
mkShell {
|
mkShell {
|
||||||
buildInputs = (lib.darwin-sdk pkgs) ++ (with pkgs; [wasm-bindgen-cli wasm-pack-hermetic llvm clang rust-wasm]);
|
buildInputs = (lib.darwin-sdk pkgs) ++ (with pkgs; [wasm-bindgen wasm-pack-hermetic llvm clang rust-wasm]);
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user