Merge pull request #175 from ethancedwards8/fix-nix-syntax

Fix syntax error in shell.nix
This commit is contained in:
Thomas 2021-03-19 13:38:55 +13:00 committed by GitHub
commit 75f5d65fc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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 ];
}