Skip to content
Snippets Groups Projects
Commit bc2dcee3 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

try with the Haskell.nix-recommended shell.nix

parent 717d001f
Branches
No related tags found
1 merge request!93Update to a newer Haskell.nix
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
buildInputs = [
pkgs.stack
];
}
# 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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment