lambdabot: fix to use new haskell-src-exts
This commit is contained in:
parent
1f62bcbc98
commit
5bfaa2d3ad
1 changed files with 19 additions and 0 deletions
|
@ -989,6 +989,25 @@ self: super: {
|
|||
# The latest Hoogle needs versions not yet in LTS Haskell 7.x.
|
||||
hoogle = super.hoogle.override { haskell-src-exts = self.haskell-src-exts_1_18_2; };
|
||||
|
||||
# To be in sync with Hoogle.
|
||||
lambdabot-haskell-plugins = (overrideCabal super.lambdabot-haskell-plugins (drv: {
|
||||
patches = [
|
||||
(pkgs.fetchpatch {
|
||||
url = "https://github.com/lambdabot/lambdabot/commit/78a2361024724acb70bc1c12c42f3a16015bb373.patch";
|
||||
sha256 = "0aw0jpw07idkrg8pdn3y3qzhjfrxsvmx3plg51m1aqgbzs000yxf";
|
||||
stripLen = 2;
|
||||
addPrefixes = true;
|
||||
})
|
||||
];
|
||||
|
||||
jailbreak = true;
|
||||
})).override {
|
||||
haskell-src-exts = self.haskell-src-exts-simple;
|
||||
};
|
||||
|
||||
# Needs new version.
|
||||
haskell-src-exts-simple = super.haskell-src-exts-simple.override { haskell-src-exts = self.haskell-src-exts_1_18_2; };
|
||||
|
||||
# Test suite fails a QuickCheck property.
|
||||
optparse-applicative_0_13_0_0 = dontCheck super.optparse-applicative_0_13_0_0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue