10 lines
187 B
Nix
10 lines
187 B
Nix
{ pkgs }:
|
|
with pkgs;
|
|
{
|
|
shell = pkgs.mkShell {
|
|
name = "SQUIGGLE_yarn-wasm-devshell";
|
|
buildInputs =
|
|
[ wasm-pack cargo yarn nodejs rustup pkg-config openssl nixfmt ];
|
|
};
|
|
}
|