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