mirror of
https://github.com/stoatchat/javascript-client-sdk.git
synced 2026-07-01 22:14:03 -04:00
393bd00fdd
Signed-off-by: Amy <amy+git@amogus.cloud>
20 lines
190 B
Nix
20 lines
190 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
|
|
with pkgs;
|
|
pkgs.mkShell {
|
|
name = "stoatEnv";
|
|
|
|
buildInputs = [
|
|
# Tools
|
|
git
|
|
gh
|
|
deno
|
|
|
|
# Node
|
|
nodejs
|
|
nodejs.pkgs.pnpm
|
|
];
|
|
}
|