File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 18
18
# https://github.com/nikita-volkov/ptr-poker/issues/11
19
19
ptr-poker = hself . callCabal2nix "ptr-poker" inputs . ptr-poker { } ;
20
20
21
+ # Freezes in test for some reason.
21
22
ghc-exactprint =
22
- hself . callCabal2nix "ghc-exactprint" inputs . ghc-exactprint-160 { } ;
23
+ dontCheck ( hself . callCabal2nix "ghc-exactprint" inputs . ghc-exactprint-160 { } ) ;
23
24
# Hlint is still broken
24
25
hlint = doJailbreak ( hself . callCabal2nix "hlint" inputs . hlint { } ) ;
25
26
28
29
# Re-generate HLS drv excluding some plugins
29
30
haskell-language-server =
30
31
hself . callCabal2nixWithOptions "haskell-language-server" ./.
31
- ( pkgs . lib . concatStringsSep " " [ "-fpedantic" "-f-hlint" ] ) { } ;
32
+ # Pedantic cannot be used due to -Werror=unused-top-binds
33
+ # Check must be disabled due to some missing required files
34
+ ( pkgs . lib . concatStringsSep " " [ "--no-check" "-f-pedantic" "-f-hlint" ] ) { } ;
32
35
} ) ;
33
36
in {
34
37
inherit disabledPlugins ;
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ library
45
45
-- This is a lot of work for almost zero benefit, so we just allow more versions here
46
46
-- and we eventually completely drop support for building HLS with stack.
47
47
, Cabal ^>= 3.2 || ^>= 3.4 || ^>= 3.6 || ^>= 3.8
48
- , Cabal-syntax ^>= 3.6
48
+ , Cabal-syntax ^>= 3.6 || ^ >= 3.8
49
49
, deepseq
50
50
, directory
51
51
, extra >= 1.7.4
You can’t perform that action at this time.
0 commit comments