Skip to content
Snippets Groups Projects
shell.nix 309 B
Newer Older
{ pkgs ? import <nixpkgs> { } }:
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;
    buildInputs = [
      pkgs.stack
    ];