summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-01-24 23:09:53 +0100
committerPeter Simons <simons@cryp.to>2017-01-24 23:14:02 +0100
commite832d380deb61872af1012f9b37889c198547467 (patch)
tree217713071d3c97d67b7680b2e3342805303f691e /pkgs/development/haskell-modules
parent2bbf68eafb5bf247366131f3ec67f3209a3dbf6f (diff)
downloadnixlib-e832d380deb61872af1012f9b37889c198547467.tar
nixlib-e832d380deb61872af1012f9b37889c198547467.tar.gz
nixlib-e832d380deb61872af1012f9b37889c198547467.tar.bz2
nixlib-e832d380deb61872af1012f9b37889c198547467.tar.lz
nixlib-e832d380deb61872af1012f9b37889c198547467.tar.xz
nixlib-e832d380deb61872af1012f9b37889c198547467.tar.zst
nixlib-e832d380deb61872af1012f9b37889c198547467.zip
haskell-brick: fix reference to vty
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 798f346b0b6e..a30829898550 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -509,7 +509,7 @@ self: super: {
 
   # https://ghc.haskell.org/trac/ghc/ticket/9625
   vty = dontCheck super.vty;
-  vty_5_14 = dontCheck super.vty_5_14;
+  vty_5_15 = dontCheck super.vty_5_15;
 
   # https://github.com/vincenthz/hs-crypto-pubkey/issues/20
   crypto-pubkey = dontCheck super.crypto-pubkey;
@@ -1183,8 +1183,8 @@ self: super: {
 
   socket_0_7_0_0 = super.socket_0_7_0_0.overrideScope (self: super: { QuickCheck = self.QuickCheck_2_9_2; });
 
-  # requires vty 5.13
-  brick = super.brick.overrideScope (self: super: { vty = self.vty_5_14; });
+  # requires most recent vty
+  brick = super.brick.overrideScope (self: super: { vty = self.vty_5_15; });
 
   turtle_1_3_1 = super.turtle_1_3_1.overrideScope (self: super: {
     optparse-applicative = self.optparse-applicative_0_13_0_0;