haskell-lambdabot-core: fix build with network 3.x

This commit is contained in:
Peter Simons 2019-04-30 10:32:11 +00:00
parent 841547a566
commit a075254632
1 changed files with 2 additions and 1 deletions

View File

@ -1282,7 +1282,8 @@ self: super: {
# Break out of pandoc >=2.0 && <2.7 (https://github.com/pbrisbin/yesod-markdown/pull/65)
yesod-markdown = doJailbreak super.yesod-markdown;
# This package needs network 3.x, which is not in LTS-13.x.
# These packages needs network 3.x, which is not in LTS-13.x.
network-bsd = super.network-bsd.override { network = self.network_3_0_1_1; };
lambdabot-core = super.lambdabot-core.overrideScope (self: super: { network = self.network_3_0_1_1; hslogger = self.hslogger_1_3_0_0; });
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super