hakyll-skeleton/shell.nix

16 lines
387 B
Nix
Raw Normal View History

{
pkgs ? import <nixpkgs> {},
mkShell,
stylish-haskell,
}:
with pkgs;
mkShell {
buildInputs = [
nix # Powerful package manager, makes packaging reliable & reproducible
stylish-haskell # A simple Haskell code prettifier
tea # Gitea official CLI client
treefmt # one CLI to format the code tree
2024-03-01 06:14:40 +00:00
zlib # Lossless data-compression library
];
}