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