about summary refs log blame commit diff
path: root/shell.nix
blob: e29bb6d7428e9b760b2b202668ffbb041f75c91a (plain) (tree)
1
2
3
4
5
6
7
8







                                
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
  buildInputs = with pkgs; [
    ghc
    cabal-install
    stack
  ];
}