c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
16 lines
410 B
Nix
16 lines
410 B
Nix
{ 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
|
|
];
|
|
}
|