40753e9f3b
As I attempt to habituate TDD, I should have some examples of tests to minimize all friction preventing me from testing.
10 lines
206 B
Nix
10 lines
206 B
Nix
let
|
|
pkgs = import /home/wpcarro/nixpkgs {};
|
|
in pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
(haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
|
|
hspec
|
|
optparse-applicative
|
|
]))
|
|
];
|
|
}
|