5f52077492
Remember: always read the instructions; that's the most important part.
11 lines
233 B
Nix
11 lines
233 B
Nix
let
|
|
pkgs = import /home/wpcarro/nixpkgs {};
|
|
in pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
(haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
|
|
hspec
|
|
optparse-applicative
|
|
unordered-containers
|
|
]))
|
|
];
|
|
}
|