mirror of
https://github.com/zaphar/kitchen.git
synced 2025-07-22 19:40:14 -04:00
8 lines
219 B
Nix
8 lines
219 B
Nix
let
|
|
lib = import ../lib/lib.nix;
|
|
in
|
|
{ pkgs, rust-wasm, wasm-pack-hermetic }:
|
|
with pkgs;
|
|
mkShell {
|
|
buildInputs = (lib.darwin-sdk pkgs) ++ (with pkgs; [wasm-bindgen-cli wasm-pack-hermetic llvm clang rust-wasm]);
|
|
} |