Enable HLint for GHC 9.10

This commit is contained in:
Vaibhav Sagar 2024-12-29 02:37:38 +11:00
parent 14ae0d23b8
commit 7670b13673
2 changed files with 6 additions and 1 deletions

View File

@ -34,7 +34,7 @@
pkgsMaster.lib.listToAttrs [
(mkVersion nixpkgs24_11 "ghc96" [(import ./nix/overlay-9.6.nix)] {})
(mkVersion nixpkgs24_11 "ghc98" [(import ./nix/overlay-9.8.nix)] {})
(mkVersion nixpkgsMaster "ghc910" [(import ./nix/overlay-9.10.nix)] { enableHlint = false; })
(mkVersion nixpkgsMaster "ghc910" [(import ./nix/overlay-9.10.nix)] {})
];
# Helper function for building environments with a given set of packages

View File

@ -6,6 +6,11 @@ _sel: sup: {
ghc-syntax-highlighter = self.ghc-syntax-highlighter_0_0_12_0;
hlint = self.callCabal2nix "hlint" (builtins.fetchTarball {
url = "https://github.com/ndmitchell/hlint/tarball/7dfba720eaf6fa9bd0b23ae269334559aa722847";
sha256 = "06sqja2n9glj8f58hkcpbkjf1h70x22jv74h9pzdlsp459sq28cy";
}) {};
code-page = sup.haskell.lib.doJailbreak (sup.haskell.lib.dontCheck super.code-page);
primitive = sup.haskell.lib.doJailbreak super.primitive;
call-stack = sup.haskell.lib.dontCheck super.call-stack;