22 lines
276 B
Nix
22 lines
276 B
Nix
|
let
|
||
|
cfg = import ../nix/default.nix {};
|
||
|
hp = cfg.haskellPackages;
|
||
|
in
|
||
|
{}:
|
||
|
|
||
|
hp.shellFor {
|
||
|
packages = p: [
|
||
|
p.my-site
|
||
|
];
|
||
|
|
||
|
buildInputs = with hp; [
|
||
|
cabal-install
|
||
|
ghcid
|
||
|
hlint
|
||
|
hp.my-site
|
||
|
ormolu
|
||
|
];
|
||
|
|
||
|
withHoogle = true;
|
||
|
}
|