mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
haskell-streaming-commons: fix build on older GHC versions by way of bytestring-builder
This commit is contained in:
parent
0eb306c5f7
commit
c64088f0ec
|
@ -57,4 +57,10 @@ self: super: {
|
|||
# The test suite depends on time >=1.4.0.2.
|
||||
cookie = dontCheck super.cookie ;
|
||||
|
||||
# bytestring >=0.10.2.0
|
||||
streaming-commons = addBuildTool super.streaming-commons self.bytestring-builder;
|
||||
|
||||
# Choose appropriate flags for our version of 'bytestring'.
|
||||
bytestring-builder = disableCabalFlag super.bytestring-builder "bytestring_has_builder";
|
||||
|
||||
}
|
||||
|
|
|
@ -57,4 +57,10 @@ self: super: {
|
|||
# The test suite depends on time >=1.4.0.2.
|
||||
cookie = dontCheck super.cookie ;
|
||||
|
||||
# bytestring >=0.10.2.0
|
||||
streaming-commons = addBuildTool super.streaming-commons self.bytestring-builder;
|
||||
|
||||
# Choose appropriate flags for our version of 'bytestring'.
|
||||
bytestring-builder = disableCabalFlag super.bytestring-builder "bytestring_has_builder";
|
||||
|
||||
}
|
||||
|
|
|
@ -52,6 +52,9 @@ self: super: {
|
|||
# Depends on time == 0.1.5, which we don't have.
|
||||
HStringTemplate_0_8 = dontDistribute super.HStringTemplate_0_8;
|
||||
|
||||
# This is part of bytestring in our compiler.
|
||||
bytestring-builder = dontHaddock super.bytestring-builder;
|
||||
|
||||
}
|
||||
|
||||
// # packages relating to amazonka
|
||||
|
|
Loading…
Reference in a new issue