summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorAnthony Cowley <acowley@gmail.com>2017-01-16 14:53:41 -0500
committerAnthony Cowley <acowley@gmail.com>2017-01-16 14:53:41 -0500
commit15389b51cea6a3a25272a1bb198a1db9a6fec0a8 (patch)
treed9772e7816d0a4014ab9a2d929b7913bbe34c73b /pkgs/development/haskell-modules
parent339313cf48bad0534ca21cb470a317d3c7c4ca2e (diff)
downloadnixlib-15389b51cea6a3a25272a1bb198a1db9a6fec0a8.tar
nixlib-15389b51cea6a3a25272a1bb198a1db9a6fec0a8.tar.gz
nixlib-15389b51cea6a3a25272a1bb198a1db9a6fec0a8.tar.bz2
nixlib-15389b51cea6a3a25272a1bb198a1db9a6fec0a8.tar.lz
nixlib-15389b51cea6a3a25272a1bb198a1db9a6fec0a8.tar.xz
nixlib-15389b51cea6a3a25272a1bb198a1db9a6fec0a8.tar.zst
nixlib-15389b51cea6a3a25272a1bb198a1db9a6fec0a8.zip
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.
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 8a4dfa60151a..2d9a04b7576b 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;