Merge pull request #175 from ethancedwards8/fix-nix-syntax
Fix syntax error in shell.nix
This commit is contained in:
commit
75f5d65fc1
|
@ -1,5 +1,5 @@
|
||||||
{ pkgs ? import <nixpkgs> {} }:
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
# nativeBuildInputs is usually what you want -- tools you need to run
|
# 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…
Reference in New Issue