about summary refs log blame commit diff
path: root/scratch/brilliant/shell.nix
blob: be1ecf3ca77f9c7eaa58c5fac39d44ca2a3fdaf6 (plain) (tree)
1
2
3
4
5
6
7
8




                                                          
           
                          
                          


       
let
  pkgs = import /home/wpcarro/nixpkgs {};
in pkgs.mkShell {
  buildInputs = with pkgs; [
    (haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
      hspec
      optparse-applicative
      unordered-containers
    ]))
  ];
}