8 lines
140 B
Nix
8 lines
140 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs.buildPackages; [
|
|
gnumake
|
|
nodejs_22
|
|
];
|
|
}
|