os/profiles/develop/haskell/default.nix
2021-01-11 20:06:08 -07:00

18 lines
239 B
Nix

{ pkgs, ... }:
let
inherit (pkgs) ghc;
in
{
environment.systemPackages = [
(ghc.withHoogle
(self: with self; [
cabal2nix
cabal-install
implicit-hie
hie-bios
stack
])
)
];
}