haskellPackages: fix brick and vty_5_13

brick 0.14 requires vty >= 5.12
This commit is contained in:
mingchuan 2016-11-29 01:03:29 +08:00 committed by Peter Simons
parent 10b832e464
commit 880ae3fd1e

View File

@ -494,6 +494,7 @@ self: super: {
# https://ghc.haskell.org/trac/ghc/ticket/9625
vty = dontCheck super.vty;
vty_5_13 = dontCheck super.vty_5_13;
# https://github.com/vincenthz/hs-crypto-pubkey/issues/20
crypto-pubkey = dontCheck super.crypto-pubkey;
@ -1121,4 +1122,8 @@ self: super: {
# https://github.com/philopon/barrier/issues/3
barrier = doJailbreak super.barrier;
# requires vty 5.13
brick = super.brick.overrideScope (self: super: { vty = self.vty_5_13; });
}