node-scrypt-wrapper/shell.nix
2023-09-25 13:15:01 -04:00

11 lines
172 B
Nix

# DEVELOPMENT shell environment
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "NodeJS";
nativeBuildInputs = with pkgs.buildPackages; [
nodejs yarn
];
}