blob: e08399c093e1eda618c8a588f3d4117d926bda51 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ pkgs, ... }:
pkgs.mkShell {
buildInputs = with pkgs; [
(haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
hspec
optparse-applicative
unordered-containers
split
]))
];
}
|