nani.wtf/generator/shell.nix

22 lines
275 B
Nix
Raw Normal View History

2020-09-22 04:03:52 +02:00
let
cfg = import ../nix/default.nix { };
2020-09-22 04:03:52 +02:00
hp = cfg.haskellPackages;
in
{}:
hp.shellFor {
packages = p: [
p.hakyll-nix-template
];
2020-09-22 04:03:52 +02:00
buildInputs = with hp; [
cabal-install
ghcid
hlint
hp.hakyll-nix-template
ormolu
];
2020-09-22 04:03:52 +02:00
withHoogle = true;
}