From 880ae3fd1ebbe3e0d629936449c82c5a55dd2346 Mon Sep 17 00:00:00 2001 From: mingchuan Date: Tue, 29 Nov 2016 01:03:29 +0800 Subject: haskellPackages: fix brick and vty_5_13 brick 0.14 requires vty >= 5.12 --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 4b3a16de26d9..22416389040c 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -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; }); + } -- cgit 1.4.1