|
183 | 183 | # for the target.
|
184 | 184 | shell.buildInputs = with nixpkgs.pkgsBuildBuild; [
|
185 | 185 | gitAndTools.git
|
186 |
| - hlint |
187 | 186 | ];
|
188 | 187 | shell.withHoogle = true;
|
189 | 188 | shell.crossPlatforms = _: [];
|
|
211 | 210 |
|
212 | 211 | })
|
213 | 212 |
|
214 |
| - ({ lib, config, ... }: |
215 |
| - # Disable haddock on 8.x |
216 |
| - lib.mkIf (lib.versionOlder config.compiler.version "9") { |
217 |
| - packages.cardano-ledger-alonzo.doHaddock = false; |
218 |
| - packages.cardano-ledger-allegra.doHaddock = false; |
219 |
| - packages.cardano-ledger-api.doHaddock = false; |
220 |
| - packages.cardano-ledger-babbage.doHaddock = false; |
221 |
| - packages.cardano-ledger-conway.doHaddock = false; |
222 |
| - packages.cardano-ledger-shelley.doHaddock = false; |
223 |
| - packages.cardano-protocol-tpraos.doHaddock = false; |
224 |
| - packages.fs-api.doHaddock = false; |
225 |
| - packages.ouroboros-network-framework.doHaddock = false; |
226 |
| - packages.ouroboros-consensus-cardano.doHaddock = false; |
227 |
| - packages.ouroboros-consensus.doHaddock = false; |
228 |
| - packages.cardano-ledger-core.doHaddock = false; |
229 |
| - packages.plutus-ledger-api.doHaddock = false; |
230 |
| - packages.wai-extra.doHaddock = false; |
231 |
| - }) |
232 | 213 |
|
233 |
| - ({ lib, pkgs, config, ... }: |
234 |
| - lib.mkIf (lib.versionAtLeast config.compiler.version "9.4") { |
235 |
| - # lib:ghc is a bit annoying in that it comes with it's own build-type:Custom, and then tries |
236 |
| - # to call out to all kinds of silly tools that GHC doesn't really provide. |
237 |
| - # For this reason, we try to get away without re-installing lib:ghc for now. |
238 |
| - reinstallableLibGhc = false; |
239 |
| - }) |
| 214 | + ({ lib, pkgs, config, ... }: { |
| 215 | + # lib:ghc is a bit annoying in that it comes with it's own build-type:Custom, and then tries |
| 216 | + # to call out to all kinds of silly tools that GHC doesn't really provide. |
| 217 | + # For this reason, we try to get away without re-installing lib:ghc for now. |
| 218 | + reinstallableLibGhc = false; |
| 219 | + }) |
240 | 220 |
|
241 | 221 | ({ pkgs, ... }:
|
242 | 222 | # Database tests
|
|
0 commit comments