Skip to content

Commit

Permalink
Merge pull request #271 from turion/dev_test_ghc94
Browse files Browse the repository at this point in the history
Enable GHC 9.4
  • Loading branch information
turion authored May 17, 2023
2 parents 4157e17 + 71ce7c6 commit 1f6d7bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,14 @@
name = "monad-bayes";
root = src;
cabal2nixOptions = "--benchmark -fdev";
overrides = self: super: with pkgs.haskell.lib; { # Please check after flake.lock updates whether some of these overrides can be removed
string-qq = dontCheck super.string-qq;
};
};
ghcs = [ # Always keep this up to date with the tested-with section in monad-bayes.cabal!
"ghc902"
"ghc927"
"ghc945"
];
buildForVersion = ghcVersion: (builtins.getAttr ghcVersion pkgs.haskell.packages).developPackage opts;
in lib.attrsets.genAttrs ghcs buildForVersion;
Expand Down
2 changes: 1 addition & 1 deletion monad-bayes.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ copyright: 2015-2020 Adam Scibior
maintainer: dominic.steinitz@tweag.io
author: Adam Scibior <adscib@gmail.com>
stability: experimental
tested-with: GHC ==9.0.2 || ==9.2.7
tested-with: GHC ==9.0.2 || ==9.2.7 || ==9.4.5
homepage: http://github.com/tweag/monad-bayes#readme
bug-reports: https://github.com/tweag/monad-bayes/issues
synopsis: A library for probabilistic programming.
Expand Down

0 comments on commit 1f6d7bc

Please sign in to comment.