Fix hlint test for ghc 8.6.5 (#1073)

The latest hlint no longer supports ghc 8.6.5.  Test last version that did instead.
This commit is contained in:
Hamish Mackenzie 2021-03-18 13:08:53 +13:00 committed by GitHub
parent ebf59e4fc3
commit c93e03c363
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ in rec {
pkgs.recurseIntoAttrs {
cabal-latest = tool compiler-nix-name "cabal" "latest";
hls-latest = tool compiler-nix-name "haskell-language-server" "latest";
hlint-latest = tool compiler-nix-name "hlint" "latest";
hlint-latest = tool compiler-nix-name "hlint" (if compiler-nix-name == "ghc865" then "3.2.7" else "latest");
}
);