about summary refs log tree commit diff
path: root/users/wpcarro/website/sandbox/learnpianochords/shell.nix
{ pkgs, ... }:

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