blob: 29a4952106a1afa6a8405987f3152ba25cadb5e2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ 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
haskell-language-server
];
}
|