7 lines
143 B
Nix
7 lines
143 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
nodejs-16_x
|
|
nodePackages.npm
|
|
];
|
|
}
|