We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58cfeb9 commit 04fa591Copy full SHA for 04fa591
compiler/ghc/default.nix
@@ -272,7 +272,7 @@ let
272
then "ghc964"
273
else "ghc962";
274
in
275
- buildPackages.haskell-nix.cabalProject' {
+ buildPackages.haskell-nix.cabalProject' ({
276
inherit compiler-nix-name;
277
name = "hadrian";
278
compilerSelection = p: p.haskell.compiler;
@@ -316,7 +316,9 @@ let
316
subDir = "hadrian";
317
includeSiblings = true;
318
};
319
- };
+ } // lib.optionalAttrs (builtins.compareVersions ghc-version "9.6" < 0) {
320
+ index-state = "2024-10-17T00:00:00Z";
321
+ });
322
323
hadrian = hadrianProject.hsPkgs.hadrian.components.exes.hadrian;
324
0 commit comments