mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
hoogle: fix http-conduit dependency for new version
5.0.17 now requires http-conduit > 2.3.
This commit is contained in:
parent
a1366f43a0
commit
899714ae96
@ -845,8 +845,11 @@ self: super: {
|
||||
# https://github.com/fpco/stackage/issues/3126
|
||||
stack = doJailbreak super.stack;
|
||||
|
||||
# Hoogle needs a newer version than lts-10 provides.
|
||||
hoogle = super.hoogle.override { haskell-src-exts = self.haskell-src-exts_1_20_1; };
|
||||
# Hoogle needs newer versions than lts-10 provides.
|
||||
hoogle = super.hoogle.override {
|
||||
haskell-src-exts = self.haskell-src-exts_1_20_1;
|
||||
http-conduit = self.http-conduit_2_3_0;
|
||||
};
|
||||
|
||||
# These packages depend on each other, forming an infinite loop.
|
||||
scalendar = markBroken (super.scalendar.override { SCalendar = null; });
|
||||
|
Loading…
Reference in New Issue
Block a user