From a024c9193d05f4d3d509c6d8538ff211e22e81c6 Mon Sep 17 00:00:00 2001 From: Ethan Edwards Date: Thu, 18 Mar 2021 19:45:46 -0400 Subject: [PATCH] Fix syntax error in shell.nix --- shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index f43b1b4..d3c1b54 100644 --- a/shell.nix +++ b/shell.nix @@ -1,5 +1,5 @@ { pkgs ? import {} }: pkgs.mkShell { # nativeBuildInputs is usually what you want -- tools you need to run - nativeBuildInputs = [ pkgs.nodejs-15_x pkgs.yarn pkgs.jq ]; -} \ No newline at end of file + nativeBuildInputs = with pkgs; [ nodejs-15_x yarn jq ]; +}