node-scrypt-wrapper/shell.nix

11 lines
172 B
Nix
Raw Normal View History

2023-09-25 17:13:20 +00:00
# DEVELOPMENT shell environment
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "NodeJS";
nativeBuildInputs = with pkgs.buildPackages; [
nodejs yarn
];
}