tvl-depot/users/glittershark/owothia/shell.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
385 B
Nix
Raw Normal View History

args@{ pkgs ? (import ../../../. {}).third_party, ... }:
((import ./packageSet.nix args).extend (pkgs.haskell.lib.packageSourceOverrides {
owothia = pkgs.gitignoreSource ./.;
})).shellFor {
packages = p: [p.owothia];
withHoogle = true;
doBenchmark = true;
buildInputs = with pkgs.haskellPackages; [
cabal-install
hlint
pkgs.haskell-language-server.ghc883
];
}