No description
Find a file
2022-05-08 18:39:45 -04:00
.github/workflows ci: Update install-nix-action 2022-05-04 17:09:06 -04:00
.vscode Switch to treefmt; resolves #283 2022-05-04 16:24:34 -04:00
bin Remove run-via-tmux 2022-04-27 18:34:03 -04:00
src Undo Haskell change 2022-05-04 17:09:21 -04:00
.envrc Add .envrc 2022-03-17 10:19:17 -04:00
.ghcid Remove cli args 2021-05-31 22:26:25 -04:00
.gitattributes Mark flake.lock as auto generated 2022-01-29 13:56:03 -05:00
.gitignore Add .envrc 2022-03-17 10:19:17 -04:00
.hlint.yaml Add relude's hlint yaml 2022-05-04 17:05:56 -04:00
default.nix init 2021-05-31 19:21:58 -04:00
flake.lock nix: No need to pin the hash; git branch HEAD provides it 2022-05-06 20:27:41 -04:00
flake.nix nix: No need to pin the hash; git branch HEAD provides it 2022-05-06 20:27:41 -04:00
fourmolu.yaml Switch to fourmolu 2022-03-23 13:46:51 -04:00
haskell-template.cabal Use optics-core instead of lens 2022-03-23 13:48:57 -04:00
hie.yaml Simplify hie.yaml 2022-02-03 19:01:19 -05:00
LICENSE Relicense under MIT 2021-08-04 10:33:15 -04:00
README.md nix: No need to pin the hash; git branch HEAD provides it 2022-05-06 20:27:41 -04:00
shell.nix init 2021-05-31 19:21:58 -04:00
treefmt.toml treefmt: add cabal-fmt 2022-05-08 18:39:45 -04:00

haskell-template

Haskell project template optimized for a fully reproducible and friendly development environment. Based on:

Getting Started

First-time setup:

To run the program with auto-recompile:

  • Press Ctrl+Shift+B in VSCode, or run bin/run in terminal, to launch Ghcid running your program.

Open Main.hs, and expect all HLS IDE features like hover-over tooltip to work out of the box. Try changing the source, and expect Ghcid to re-compile and re-run the app in the terminal below.


Renaming the project:

git clone <your-clone-url>
cd your-project
NAME=myproject

git mv haskell-template.cabal ${NAME}.cabal
nix run nixpkgs#sd -- haskell-template ${NAME} * */*
git add . && git commit -m rename

Tips

  • Run nix flake update to update all flake inputs.
  • Run treefmt in nix shell to autoformat the project. This uses treefmt, which uses ./treefmt.toml (where fourmolu and nixpkgs-fmt are specified).

Alternatives