Skip to content

Commit

Permalink
haskellPackages: fix brick and vty_5_13
Browse files Browse the repository at this point in the history
brick 0.14 requires vty >= 5.12
  • Loading branch information
sifmelcara authored and peti committed Dec 1, 2016
1 parent 10b832e commit 880ae3f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkgs/development/haskell-modules/configuration-common.nix
Expand Up @@ -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;
Expand Down Expand Up @@ -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; });

}

0 comments on commit 880ae3f

Please sign in to comment.