tvl-depot/website/sandbox/nut-score/shell.nix
William Carroll 57b58e9b2f Move nut-score into website/sandbox
Also move some .gitignore entries from the top-level .gitignore into a
subdirectory .gitignore.
2020-03-24 12:29:34 +00:00

8 lines
119 B
Nix

let
pkgs = import <nixpkgs> {};
in pkgs.mkShell {
name = "nut-score";
buildInputs = with pkgs; [
yarn
];
}