From e5000917e8b5ccb701bee427fa0f92748c1b90a0 Mon Sep 17 00:00:00 2001 From: Thomas Hobson Date: Sat, 13 Mar 2021 15:58:30 +1300 Subject: [PATCH] dev(nix-shell): add yarn --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 732c1b1..f9063bc 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.buildPackages.nodejs-15_x ]; + nativeBuildInputs = [ pkgs.nodejs-15_x pkgs.yarn ]; } \ No newline at end of file