squiggle/nix/shell.nix
2022-08-15 22:45:03 -07:00

10 lines
182 B
Nix

{ pkgs }:
with pkgs;
{
shell = mkShell {
name = "SQUIGGLE_yarn-wasm-devshell";
buildInputs =
[ wasm-pack cargo yarn nodejs rustup pkg-config openssl nixfmt ];
};
}