about summary refs log tree commit diff
path: root/shell.nix
blob: 72fce482bad4789bda253655e2aa4e406137c80d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
  buildInputs = with pkgs; [
    ghc
    cabal-install
    stack
  
    haskell-language-server
  ];
}