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




                                                          
           



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