aboutsummaryrefslogtreecommitdiffstats
path: root/shell.nix
blob: ea3de9b6e84053dc461737bddc72d610894dcb8d (plain)
1
2
3
4
5
6
7
8
with (import <nixpkgs> {});
{ ghc ? haskell.compiler.ghc8107 }:

haskell.lib.buildStackProject {
  inherit ghc;
  name = "choc-env";
  buildInputs = [ pkgs.haskell-language-server ];
}