hakyll-skeleton/shell.nix

19 lines
569 B
Nix
Raw 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
2024-10-18 11:16:30 +00:00
haskell.compiler.ghc910 # The Glasgow Haskell Compiler
2024-10-28 12:03:05 +00:00
haskellPackages.hakyll # A static website compiler library
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
];
}