summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-03-18 11:06:42 +0100
committerPeter Simons <simons@cryp.to>2015-03-18 12:13:43 +0100
commitfe8d65c9a6e4c555590fe2593858cc80081600cf (patch)
tree65b127a85ba217673dc8af3e32bcd5f43d2f8c67 /pkgs
parent53fa11398c3a472c70d7b8189809860b65f75139 (diff)
downloadnixpkgs-fe8d65c9a6e4c555590fe2593858cc80081600cf.tar
nixpkgs-fe8d65c9a6e4c555590fe2593858cc80081600cf.tar.gz
nixpkgs-fe8d65c9a6e4c555590fe2593858cc80081600cf.tar.bz2
nixpkgs-fe8d65c9a6e4c555590fe2593858cc80081600cf.tar.lz
nixpkgs-fe8d65c9a6e4c555590fe2593858cc80081600cf.tar.xz
nixpkgs-fe8d65c9a6e4c555590fe2593858cc80081600cf.tar.zst
nixpkgs-fe8d65c9a6e4c555590fe2593858cc80081600cf.zip
Add required overrrides for haskell-hosc and haskell-tidal-midi.
Fixes https://github.com/NixOS/nixpkgs/issues/6864.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
index dc43d296ba3..d865c65d55c 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
@@ -75,8 +75,8 @@ self: super: {
   seqid-streams = super.seqid-streams_0_1_0;
 
   # Need binary >= 0.7.2, but our compiler has only 0.7.1.0.
-  hosc = dontDistribute super.hosc;
-  tidal-midi = dontDistribute super.tidal-midi;
+  hosc = super.hosc.overrideScope (self: super: { binary = self.binary_0_7_4_0; });
+  tidal-midi = super.tidal-midi.overrideScope (self: super: { binary = self.binary_0_7_4_0; });
 
   # These packages need mtl 2.2.x directly or indirectly via dependencies.
   amazonka = markBroken super.amazonka;