Skip to content
Snippets Groups Projects
shell.nix 206 B
Newer Older
  • Learn to ignore specific revisions
  • # 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;
      }