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








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