Fix running `ghcid` in shell

This commit is contained in:
Snail 2025-02-19 20:44:36 +04:00 committed by voidlizard
parent 186d4c5f01
commit 8514b23aef
1 changed files with 3 additions and 1 deletions

View File

@ -165,7 +165,9 @@ outputs = { self, nixpkgs, flake-utils, ... }@inputs:
devShells.default = pkgs.haskellPackages.shellFor {
packages = _: builtins.attrValues (ourHaskellPackages pkgs);
packages = p: builtins.attrValues (ourHaskellPackages pkgs) ++ [
p.skylighting-core # needed for hbs2-tests which we did not expose
];
# withHoogle = true;
buildInputs = (
with pkgs.haskellPackages; [