From 15389b51cea6a3a25272a1bb198a1db9a6fec0a8 Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Mon, 16 Jan 2017 14:53:41 -0500 Subject: [PATCH] haskell-packages: fix purescript_0_10_5 deps purescript-0.10.5 requires bower-json >= 1.0.0.1 && < 1.1, which is available as bower-json_1_0_0_1. --- 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 8a4dfa60151..2d9a04b7576 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -614,6 +614,11 @@ self: super: { # /homeless-shelter. Disabled. purescript = dontCheck super.purescript; + # Requires bower-json >= 1.0.0.1 && < 1.1 + purescript_0_10_5 = super.purescript_0_10_5.overrideScope (self: super: { + bower-json = self.bower-json_1_0_0_1; + }); + # https://github.com/tych0/xcffib/issues/37 xcffib = dontCheck super.xcffib;