about summary refs log blame commit diff
path: root/users/glittershark/xanthous/shell.nix
blob: 9881e6bf0452443e89c90f192113f5a90adc1b81 (plain) (tree)
1
2
3
4
5
6
7
8
                                                   
 




                                                                       
                     



                                            
         
                                       

    
{ pkgs ? (import ../../../. {}).third_party, ... }:

(pkgs.haskellPackages.extend (pkgs.haskell.lib.packageSourceOverrides {
  xanthous = pkgs.gitignoreSource ./.;
})).shellFor {
  packages = p: [p.xanthous];
  withHoogle = true;
  doBenchmark = true;
  buildInputs = with pkgs.haskellPackages; [
    cabal-install
    ghc-prof-flamegraph
    hp2pretty
    hlint
    pkgs.haskell-language-server.ghc883
  ];
}