about summary refs log tree commit diff
path: root/users/wpcarro/website/sandbox/covid-uk/shell.nix
blob: 6442c39f9c47c20978af09f983a5218fca22501b (plain) (blame)
1
2
3
4
5
6
7
8
9
let
  briefcase = import <briefcase> {};
  pkgs = briefcase.third_party.pkgs;
in pkgs.mkShell {
  buildInputs = with pkgs; [
    yarn
    nodejs
  ];
}