f0803547e4
In the spirit of "keep it simple, stupid", I am naming this application as closely to the functionality as I can imagine.
9 lines
160 B
Nix
9 lines
160 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
in pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
elmPackages.elm
|
|
elmPackages.elm-format
|
|
elmPackages.elm-live
|
|
];
|
|
}
|