dev(nix-shell): add yarn

This commit is contained in:
Thomas Hobson 2021-03-13 15:58:30 +13:00
parent 4e2be29461
commit e5000917e8
No known key found for this signature in database
GPG Key ID: 9F1FD9D87950DB6F
1 changed files with 1 additions and 1 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.buildPackages.nodejs-15_x ];
nativeBuildInputs = [ pkgs.nodejs-15_x pkgs.yarn ];
}