hakyll-skeleton/shell.nix

17 lines
443 B
Nix
Raw Permalink Normal View History

{
pkgs ? import <nixpkgs> {},
mkShell,
stylish-haskell,
}:
with pkgs;
mkShell {
buildInputs = [
2024-07-24 09:42:44 +00:00
alejandra # The Uncompromising Nix Code Formatter
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
];
}