about summary refs log tree commit diff
path: root/users/wpcarro/website/sandbox/learnpianochords/shell.nix
blob: afcc0f4d36457ef5b5a7dd11aa4b3f532f0210ae (plain) (blame)
1
2
3
4
5
6
7
8
9
{ pkgs, ... }:

pkgs.mkShell {
  buildInputs = with pkgs.elmPackages; [
    elm
    elm-format
    elm-live
  ];
}