Skip to content

Commit

Permalink
Try moving to unstable for haskell
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjm committed Nov 16, 2023
1 parent cf6e17b commit 7b56a64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion codedown.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let
(pkgsUnstable.callPackage ./languages/cpp {})
(callPackage ./languages/dot {})
(callPackage ./languages/go {})
(callPackage ./languages/haskell {})
(pkgsUnstable.callPackage ./languages/haskell {})
(callPackage ./languages/julia {})
(callPackage ./languages/octave {})
(callPackage ./languages/postgres {})
Expand Down
2 changes: 1 addition & 1 deletion languages/haskell/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ with lib;
let
common = callPackage ../common.nix {};

hasHlsSupport = version: true;
hasHlsSupport = version: builtins.compareVersions version "9.0" >= 0;

chooseLanguageServers = settings: snapshot: ghc: kernelName:
[]
Expand Down
2 changes: 1 addition & 1 deletion tests/app/Spec/Tests/Haskell.hs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ tests = do
haskellCommonTests "haskell-ghc90"
haskellCommonTests "haskell-ghc92"
haskellCommonTests "haskell-ghc94"
-- haskellCommonTests "haskell-ghc96"
haskellCommonTests "haskell-ghc96"


haskellCommonTests :: Text -> TopSpec
Expand Down

0 comments on commit 7b56a64

Please sign in to comment.