tvl-depot/scratch/haskell-programming-from-first-principles/shell.nix
William Carroll 362a31166d Create Nix shell for Haskell scratchpad
Helps me run my chapter exercises.
2020-06-18 11:08:55 +01:00

10 lines
207 B
Nix

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