squiggle/nix/shell.nix
Quinn Dougherty 9e342d884f init nix
2022-08-29 21:39:18 +08:00

22 lines
323 B
Nix

{ pkgs }:
with pkgs; {
shell = mkShell {
name = "SQUIGGLE_yarn-wasm-devshell";
buildInputs = [
wasm-pack
cargo
yarn
nodejs
nodePackages.ts-node
rustup
pkg-config
libressl
nixfmt
rustfmt
wasmtime
binaryen
wasm-bindgen-cli
];
};
}