Skip to content
Snippets Groups Projects
shell.nix 266 B
Newer Older
# shell.nix
let
  project = import ./default.nix;
in
  project.shellFor {
    # Prevents cabal from choosing alternate plans, so that
    # *all* dependencies are provided by Nix.
    exactDeps = true;

    withHoogle = false;

    packages = ps: [ ps.stack ];