haskellPackages.gi-webkit2: Fix build

This commit is contained in:
Malte Brandy 2020-06-29 11:03:06 +02:00
parent 293fe13b9e
commit df73cc3631
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9

View file

@ -1419,4 +1419,13 @@ self: super: {
# https://github.com/kowainik/policeman/issues/57
policeman = doJailbreak super.policeman;
# 2020-06-29: These three packages have bumped their dependencies for haskell-gi and haskell-gi-base beyond stack-lts.
# Choosing a jailbreak, because a version override would rebuild most of the glibverse and the packages still build with the older version.
gi-javascriptcore =
# Remove these jailbreaks, when assert fails.
assert (pkgs.lib.versionOlder super.haskell-gi-base.version "0.24");
doJailbreak super.gi-javascriptcore;
gi-soup = doJailbreak super.gi-soup;
gi-webkit2 = doJailbreak super.gi-webkit2;
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super