Create Nix shell for Haskell scratchpad

Helps me run my chapter exercises.
This commit is contained in:
William Carroll 2020-06-18 11:08:55 +01:00
parent a981bb0d4a
commit 362a31166d

View file

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