squiggle/nix/shell.nix
2022-08-17 04:18:09 -07:00

22 lines
367 B
Nix

{ pkgs, cargo2nix }:
with pkgs; {
shell = mkShell {
name = "SQUIGGLE_yarn-wasm-devshell";
buildInputs = [
wasm-pack
cargo
yarn
nodejs
nodePackages.ts-node
rustup
pkg-config
libressl
nixfmt
rustfmt
cargo2nix.outputs.packages.${pkgs.system}.default
wasmtime
binaryen
];
};
}