pub-solar-os/profiles/develop/haskell/default.nix

18 lines
239 B
Nix
Raw Normal View History

2021-01-12 03:06:08 +00:00
{ pkgs, ... }:
let
inherit (pkgs) ghc;
in
{
environment.systemPackages = [
(ghc.withHoogle
(self: with self; [
cabal2nix
cabal-install
implicit-hie
hie-bios
stack
])
)
];
}