rel8/shell.nix
Ollie Charles 17c7c61fba
Support GHC 9 and switch default compiler (#97)
This required some eta expansion in `Rel8.Generic.Table`, probably due
to changes to simplified subsumption.
2021-07-02 13:06:35 +01:00

12 lines
286 B
Nix

let
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs {};
hsPkgs = import ./default.nix;
in
hsPkgs.shellFor {
withHoogle = false;
tools = { cabal = "latest"; };
exactDeps = false;
buildInputs = [ pkgs.postgresql pkgs.pythonPackages.sphinx ];
}