a291c8690a
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
22 lines
424 B
Nix
22 lines
424 B
Nix
{ pkgs ? (import ../../../. { }).third_party, ... }:
|
|
|
|
let
|
|
inherit (pkgs)
|
|
haskellPackages
|
|
haskell
|
|
gitignoreSource
|
|
;
|
|
in
|
|
|
|
(haskellPackages.extend (haskell.lib.packageSourceOverrides {
|
|
owothia = gitignoreSource ./.;
|
|
})).shellFor {
|
|
packages = p: [ p.owothia ];
|
|
withHoogle = true;
|
|
doBenchmark = true;
|
|
buildInputs = with haskellPackages; [
|
|
cabal-install
|
|
hlint
|
|
haskell-language-server
|
|
];
|
|
}
|