tvl-depot/scratch/brilliant/shell.nix
William Carroll 5f52077492 Re-type type using the altered keyboard
Remember: always read the instructions; that's the most important part.
2020-08-06 00:18:44 +01:00

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
]))
];
}