rel8/shell.nix

12 lines
295 B
Nix
Raw Normal View History

2021-02-27 16:24:49 +03:00
let
2021-02-28 14:38:17 +03:00
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs {};
2021-02-27 22:06:31 +03:00
hsPkgs = import ./default.nix;
2021-02-27 16:24:49 +03:00
in
hsPkgs.shellFor {
withHoogle = true;
tools = { cabal = "3.2.0.0"; haskell-language-server = "latest"; };
2021-03-04 16:28:02 +03:00
exactDeps = false;
2021-02-28 14:38:17 +03:00
buildInputs = [ pkgs.postgresql ];
2021-02-27 16:24:49 +03:00
}