Create Nix shell for Haskell scratchpad
Helps me run my chapter exercises.
This commit is contained in:
parent
a981bb0d4a
commit
362a31166d
1 changed files with 10 additions and 0 deletions
10
scratch/haskell-programming-from-first-principles/shell.nix
Normal file
10
scratch/haskell-programming-from-first-principles/shell.nix
Normal 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
|
||||
]))
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue