Add required overrrides for haskell-hosc and haskell-tidal-midi.

Fixes https://github.com/NixOS/nixpkgs/issues/6864.
This commit is contained in:
Peter Simons 2015-03-18 11:06:42 +01:00
parent 53fa11398c
commit fe8d65c9a6

View file

@ -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;