mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 13:36:59 +00:00
12 lines
120 B
Nix
12 lines
120 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
|
|
with pkgs;
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
nodejs
|
|
nodejs.pkgs.pnpm
|
|
];
|
|
}
|