mirror of
https://github.com/zaphar/kitchen.git
synced 2025-07-21 19:29:49 -04:00
6 lines
269 B
Nix
6 lines
269 B
Nix
{ pkgs, rust-wasm }:
|
|
with pkgs;
|
|
mkShell {
|
|
buildInputs = (if stdenv.isDarwin then [ pkgs.darwin.apple_sdk.frameworks.Security ] else [ ]) ++ (with pkgs; [wasm-bindgen-cli wasm-pack llvm clang rust-wasm]);
|
|
#buildInputs = with pkgs; [wasm-bindgen-cli wasm-pack];
|
|
} |