No description
Find a file
Sridhar Ratnakumar 0f37d0ef05 Switch to declarative linters
Resolves #8
2022-03-30 15:12:35 -04:00
.github/workflows Update lint-utils to master, and fix checks 2022-03-26 11:59:19 -04:00
.vscode Switch to fourmolu 2022-03-23 13:46:51 -04:00
bin Replace bin/format with lint-utils 2022-03-25 14:09:08 -04:00
src Switch to declarative linters 2022-03-30 15:12:35 -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
default.nix
flake.lock Switch to declarative linters 2022-03-30 15:12:35 -04:00
flake.nix Switch to declarative linters 2022-03-30 15:12:35 -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 Replace bin/format with lint-utils 2022-03-25 14:09:08 -04:00
shell.nix

haskell-template

Haskell project template optimized for a fully reproducible and friendly development environment. Based on Nix + Flakes + VSCode (HLS) + fourmolu autoformatting + Relude as Prelude.

Getting Started

First-time setup:

To run the program with auto-recompile:

  • Press Ctrl+Shift+B in VSCode, or run bin/run (bin/run-via-tmux if you have tmux installed) 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. nixpkgs is pinned to a specific a rev in flake.nix, which you can advance to the latest rev reported in status.nixos.org.
  • Run nix run .#format to autoformat the project.

Alternatives