diff options
Diffstat (limited to 'website/sandbox/learnpianochords/shell.nix')
-rw-r--r-- | website/sandbox/learnpianochords/shell.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/website/sandbox/learnpianochords/shell.nix b/website/sandbox/learnpianochords/shell.nix new file mode 100644 index 000000000000..6f1c8ee23b30 --- /dev/null +++ b/website/sandbox/learnpianochords/shell.nix @@ -0,0 +1,9 @@ +let + pkgs = import <nixpkgs> {}; +in pkgs.mkShell { + buildInputs = with pkgs; [ + elmPackages.elm + elmPackages.elm-format + elmPackages.elm-live + ]; +} |