From b45e3290c90031bc41d48a9009e9034b6d6814ee Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 28 Aug 2015 12:42:03 +0200 Subject: [PATCH] haskell-wx: new versions require wkGTK 3.0 --- pkgs/development/haskell-modules/configuration-common.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 41eeaf30cc5..528a493aba0 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -591,9 +591,9 @@ self: super: { # https://github.com/vincenthz/hs-asn1/issues/12 asn1-encoding = dontCheck super.asn1-encoding; - # wxc supports wxGTX >= 2.9, but our current default version points to 2.8. - wxc = super.wxc.override { wxGTK = pkgs.wxGTK29; }; - wxcore = super.wxcore.override { wxGTK = pkgs.wxGTK29; }; + # wxc supports wxGTX >= 3.0, but our current default version points to 2.8. + wxc = super.wxc.override { wxGTK = pkgs.wxGTK30; }; + wxcore = super.wxcore.override { wxGTK = pkgs.wxGTK30; }; # Depends on QuickCheck 1.x. HaVSA = super.HaVSA.override { QuickCheck = self.QuickCheck_1_2_0_1; };