diff options
Diffstat (limited to 'users/wpcarro/website/sandbox/covid-uk/shell.nix')
-rw-r--r-- | users/wpcarro/website/sandbox/covid-uk/shell.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/users/wpcarro/website/sandbox/covid-uk/shell.nix b/users/wpcarro/website/sandbox/covid-uk/shell.nix new file mode 100644 index 000000000000..6442c39f9c47 --- /dev/null +++ b/users/wpcarro/website/sandbox/covid-uk/shell.nix @@ -0,0 +1,9 @@ +let + briefcase = import <briefcase> {}; + pkgs = briefcase.third_party.pkgs; +in pkgs.mkShell { + buildInputs = with pkgs; [ + yarn + nodejs + ]; +} |