2021-06-05 03:05:01 +02:00
|
|
|
let
|
|
|
|
depot = import ../../../. {};
|
|
|
|
inherit (depot) third_party;
|
|
|
|
pkgs = third_party.nixpkgs;
|
|
|
|
in
|
2019-08-25 19:28:10 +02:00
|
|
|
|
2020-06-29 15:38:17 +02:00
|
|
|
(pkgs.haskellPackages.extend (pkgs.haskell.lib.packageSourceOverrides {
|
2021-06-05 03:05:01 +02:00
|
|
|
xanthous = third_party.gitignoreSource ./.;
|
2020-06-29 15:38:17 +02:00
|
|
|
})).shellFor {
|
|
|
|
packages = p: [p.xanthous];
|
|
|
|
withHoogle = true;
|
2020-07-03 19:46:29 +02:00
|
|
|
doBenchmark = true;
|
2020-06-29 15:38:17 +02:00
|
|
|
buildInputs = with pkgs.haskellPackages; [
|
|
|
|
cabal-install
|
|
|
|
ghc-prof-flamegraph
|
|
|
|
hp2pretty
|
2020-07-04 02:35:02 +02:00
|
|
|
hlint
|
2021-03-26 02:49:23 +01:00
|
|
|
haskell-language-server
|
2021-06-12 20:41:24 +02:00
|
|
|
cabal2nix
|
2020-06-29 15:38:17 +02:00
|
|
|
];
|
|
|
|
}
|