File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 17
17
# https://github.com/nikita-volkov/ptr-poker/issues/11
18
18
ptr-poker = hself . callCabal2nix "ptr-poker" inputs . ptr-poker { } ;
19
19
20
+ # Freezes in test for some reason.
20
21
ghc-exactprint =
21
- hself . callCabal2nix "ghc-exactprint" inputs . ghc-exactprint-160 { } ;
22
+ dontCheck ( hself . callCabal2nix "ghc-exactprint" inputs . ghc-exactprint-160 { } ) ;
22
23
hlint = hsuper . callCabal2nix "hlint" inputs . hlint-35 { } ;
23
24
24
25
stylish-haskell = appendConfigureFlag hsuper . stylish-haskell "-fghc-lib" ;
25
26
26
27
# Re-generate HLS drv excluding some plugins
27
28
haskell-language-server =
28
29
hself . callCabal2nixWithOptions "haskell-language-server" ./.
29
- ( pkgs . lib . concatStringsSep " " [ "-fpedantic" "-f-hlint" ] ) { } ;
30
-
30
+ # Pedantic cannot be used due to -Werror=unused-top-binds
31
+ # Check must be disabled due to some missing required files
32
+ ( pkgs . lib . concatStringsSep " " [ "--no-check" "-f-pedantic" "-f-hlint" ] ) { } ;
31
33
} ) ;
32
34
in {
33
35
inherit disabledPlugins ;
You can’t perform that action at this time.
0 commit comments