mirror of
https://github.com/engineer-man/piston.git
synced 2025-05-08 04:46:32 +02:00
Fix syntax error in shell.nix
This commit is contained in:
parent
5f39d11f87
commit
a024c9193d
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
{ 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 ];
|
||||
}
|
||||
nativeBuildInputs = with pkgs; [ nodejs-15_x yarn jq ];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue