13 lines
212 B
Nix
13 lines
212 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
(haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
|
||
|
hspec
|
||
|
optparse-applicative
|
||
|
unordered-containers
|
||
|
split
|
||
|
]))
|
||
|
];
|
||
|
}
|