piston/shell.nix
2021-03-13 19:53:57 +13:00

5 lines
No EOL
188 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = [ pkgs.nodejs-15_x pkgs.yarn pkgs.jq ];
}