rel8/shell.nix

12 lines
322 B
Nix
Raw Permalink Normal View History

let
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs {};
hsPkgs = import ./default.nix;
in
hsPkgs.shellFor {
2021-04-07 16:57:50 +03:00
withHoogle = false;
tools = { cabal = "latest"; haskell-language-server = "latest"; };
exactDeps = false;
buildInputs = [ pkgs.postgresql pkgs.pythonPackages.sphinx ];
}