mirror of
https://github.com/zaphar/kitchen.git
synced 2025-07-23 19:49:58 -04:00
5 lines
209 B
Nix
5 lines
209 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]);
|
||
|
}
|