squiggle/nix/shell.nix
2022-08-16 18:26:10 -07:00

19 lines
309 B
Nix

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