hakyll-skeleton/shell.nix
Fiscal Velvet Poet a915745a92
shell: added zlib
2024-03-01 16:14:40 +10:00

16 lines
387 B
Nix

{
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
zlib # Lossless data-compression library
];
}