File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 230
230
231
231
# Extra configurations (possibly compiler-dependent) to add to all projects.
232
232
extraConfig = compiler :
233
- {
233
+ let addPackageKeys = x : x // { package-keys = builtins . attrNames x . packages ; } ;
234
+ in {
234
235
modules = [
235
- ( { pkgs , ... } : pkgs . haskell-nix . haskellLib . addPackageKeys {
236
+ ( addPackageKeys {
236
237
# Packages that depend on the plutus-tx plugin have broken haddock
237
238
packages = {
238
239
cardano-node-emulator . doHaddock = false ;
241
242
plutus-scripts-bench . doHaddock = false ;
242
243
} ;
243
244
} )
244
- ( { pkgs , ... } : pkgs . haskell-nix . haskellLib . addPackageKeys {
245
+ ( addPackageKeys {
245
246
# Packages that have haddock that is broken on 8.10
246
247
# See https://github.com/input-output-hk/cardano-haskell-packages/issues/482
247
248
packages = lib . mkIf ( compiler == "ghc810" ) {
You can’t perform that action at this time.
0 commit comments