about summary refs log blame commit diff
path: root/scratch/haskell-programming-from-first-principles/shell.nix
blob: 3190e6e75e72732e252767bc5dc83fa9b0c5e84d (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                          
let
  pkgs = import <unstable> {};
in pkgs.mkShell {
  buildInputs = with pkgs; [
    (haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
      hpkgs.quickcheck-simple
      hpkgs.checkers
    ]))
  ];
}