Skip to content

Commit fca7887

Browse files
committed
nix: use GHC9.6.5
1 parent 42a5644 commit fca7887

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

bench/tx-generator/tx-generator.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ common with-library
2525
-- This is the inverse to the "buildable" GHC version constraint in plutus-scripts-bench.
2626
-- It makes sure, we only depend on that package if it is buildable.
2727
-- The tx-generator will fall back to pre-serialized Plutus scripts if this package is not present.
28-
if !(impl(ghc <9.6) || impl(ghc >=9.7))
29-
build-depends: plutus-scripts-bench ^>= 1.0.4
30-
cpp-options: -DWITH_LIBRARY
28+
-- if !(impl(ghc <9.6) || impl(ghc >=9.7))
29+
-- build-depends: plutus-scripts-bench ^>= 1.0.4
30+
-- cpp-options: -DWITH_LIBRARY
3131

3232
common maybe-unix
3333
if !os(windows)

nix/haskell.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ let
2121
{
2222
src = ../.;
2323
name = "cardano-node";
24-
compiler-nix-name = lib.mkDefault "ghc8107";
24+
compiler-nix-name = lib.mkDefault "ghc96";
2525
# extra-compilers
26-
flake.variants = lib.genAttrs ["ghc96"] (x: {compiler-nix-name = x;});
26+
flake.variants = lib.genAttrs ["ghc8107"] (x: {compiler-nix-name = x;});
2727
cabalProjectLocal = ''
2828
repository cardano-haskell-packages-local
2929
url: file:${CHaP}

0 commit comments

Comments
 (0)