about summary refs log tree commit diff
path: root/users/wpcarro/website/sandbox/covid-uk/shell.nix
blob: f918c4033e2fa7ca7c5fa2469849f3711c1d77ea (plain) (blame)
1
2
3
4
5
6
7
8
{ pkgs, ... }:

pkgs.mkShell {
  buildInputs = with pkgs; [
    yarn
    nodejs
  ];
}