No description
ee3bc4f152
• Updated input 'flake-parts': 'github:hercules-ci/flake-parts/006c75898cf814ef9497252b022e91c946ba8e17' (2023-05-08) → 'github:hercules-ci/flake-parts/6ef2707776c6379bc727faf3f83c0dd60b06e0c6' (2023-05-31) • Updated input 'haskell-flake': 'github:srid/haskell-flake/996f5c2cdc67285c4990df378976f9dbf26f8401' (2023-05-30) → 'github:srid/haskell-flake/b27554ae644f14eac15cd1f104d6db6a05ed632d' (2023-05-31) • Updated input 'nixpkgs': 'github:nixos/nixpkgs/12ba1a5f90b16acdca741ac82d8204b3ec8c2aaf' (2023-05-10) → 'github:nixos/nixpkgs/9cfaa8a1a00830d17487cb60a19bb86f96f09b27' (2023-05-31) • Updated input 'treefmt-nix': 'github:numtide/treefmt-nix/b44794f94514b61512352a18cd77c710f0005f15' (2023-05-05) → 'github:numtide/treefmt-nix/6521a278bcba66b440554cc1350403594367b4ac' (2023-05-31) |
||
---|---|---|
.github/workflows | ||
.vscode | ||
src | ||
.envrc | ||
.gitattributes | ||
.gitignore | ||
.hlint.yaml | ||
flake.lock | ||
flake.nix | ||
fourmolu.yaml | ||
haskell-template.cabal | ||
hie.yaml | ||
Jenkinsfile | ||
LICENSE | ||
README.md | ||
shell.nix |
haskell-template
Get a Haskell development environment up and running quickly. Thanks to Nix, this template is optimized for a fully reproducible and friendly development environment. It is based on:
- Nix + Flakes (via
github:srid/haskell-flake
) + GHC 9.2 - VSCode + HLS
- fourmolu autoformatting
- Relude as Prelude.
.hlint.yaml
is from relude
- Devshell scripts (
,
prefixed) are provided via mission-control
If you have an existing Haskell project, you should probably use https://github.com/srid/haskell-flake instead.
Getting Started
tldr: Install Nix, enable Flakes, open in VSCode and run , run
.
Full instructions: https://srid.ca/haskell-template/start
Recommended dev environment setup: https://haskell.flake.page/direnv
Tips
- Run
nix flake update
to update all flake inputs. - Run
nix build .#check -L
to run the flake checks. - Run
, fmt
in nix shell to autoformat the project. This uses treefmt. - Run
, docs
to start Hoogle with packages in your cabal file. - Run the application without installing:
nix run github:srid/haskell-template
(ornix run .
from checkout) - Common workflows
- Adding library dependencies in Nix: https://haskell.flake.page/dependency
- Adding tests: https://srid.ca/haskell-template/tests
Discussions
Questions? Ideas? Suggestions? You may post them here: https://github.com/srid/haskell-template/discussions