mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-07 09:25:27 +00:00
9 lines
119 B
Nix
9 lines
119 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell rec {
|
|
buildInputs = [
|
|
pkgs.nodejs
|
|
pkgs.nodejs.pkgs.yarn
|
|
];
|
|
}
|