Commit df8731c 1 parent 50a18a5 commit df8731c Copy full SHA for df8731c
File tree 2 files changed +15
-13
lines changed
tests/app/Spec/Tests/Haskell
2 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 31
31
# };
32
32
# };
33
33
34
- ghc90 = haskell . packages . ghc90 . override {
35
- overrides = self : super : {
36
- ghc-parser = self . callCabal2nix "ghc-parser" (
37
- runCommand "ghc-parser-source" { } "cp -r ${ ihaskell-source } /ghc-parser $out"
38
- ) { } ;
34
+ # ghc90 = haskell.packages.ghc90.override {
35
+ # overrides = self: super: {
36
+ # ghc-parser = self.callCabal2nix "ghc-parser" (
37
+ # runCommand "ghc-parser-source" {} "cp -r ${ihaskell-source}/ghc-parser $out"
38
+ # ) {};
39
39
40
- ipython-kernel = self . callCabal2nix "ipython-kernel" (
41
- runCommand "ipython-kernel" { } "cp -r ${ ihaskell-source } /ipython-kernel $out"
42
- ) { } ;
40
+ # ipython-kernel = self.callCabal2nix "ipython-kernel" (
41
+ # runCommand "ipython-kernel" {} "cp -r ${ihaskell-source}/ipython-kernel $out"
42
+ # ) {};
43
43
44
- ihaskell = self . callCabal2nixWithOptions "ihaskell" ihaskell-source "--no-check" { } ;
45
- } ;
46
- } ;
44
+ # ihaskell = self.callCabal2nixWithOptions "ihaskell" ihaskell-source "--no-check" {};
45
+ # };
46
+ # };
47
47
48
48
ghc92 = haskell . packages . ghc92 . override {
49
49
overrides = self : super : {
108
108
warp_3_3_29 = null ;
109
109
110
110
ghc-syntax-highlighter = self . ghc-syntax-highlighter_0_0_11_0 ;
111
+
112
+ ghc-lib = self . ghc-lib_9_8_2_20240223 ;
111
113
} ;
112
114
} ;
113
115
}
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ module Spec.Tests.Haskell.Diagnostics where
7
7
import Control.Lens ((^.) )
8
8
import Data.String.Interpolate
9
9
import Data.Text as T
10
- import Language.LSP.Protocol.Types
11
10
import Language.LSP.Protocol.Lens hiding (diagnostics )
11
+ import Language.LSP.Protocol.Types
12
12
import qualified Spec.Tests.Haskell.Common as HaskellCommon
13
13
import Spec.Tests.Haskell.Common hiding (lsName )
14
14
import Test.Sandwich as Sandwich
@@ -72,5 +72,5 @@ etaExpandCode = [__i|module Foo where
72
72
73
73
main :: IO ()
74
74
main = runSandwichWithCommandLineArgs Sandwich. defaultOptions $
75
- introduceNixEnvironment [kernelSpec " haskell-ghc924 " ] [] " Haskell" $
75
+ introduceNixEnvironment [kernelSpec " haskell-ghc92 " ] [] " Haskell" $
76
76
diagnosticsTests HaskellCommon. lsName
You can’t perform that action at this time.
0 commit comments