3
0
Fork 0
forked from mirrors/nixpkgs

haskellPackages.streamly-bytestring: Pin to 0.1.2 to stay compatible with stackage LTS

This commit is contained in:
Malte Brandy 2021-07-20 17:35:31 +02:00
parent 3199c9188a
commit fef688899e
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9
2 changed files with 25 additions and 0 deletions

View file

@ -85,6 +85,8 @@ default-package-overrides:
- dual-tree < 0.2.3.0
- diagrams-core < 1.5.0
- diagrams-lib < 1.4.4
# streamly-bytestring 0.1.3 needs streamly 0.8.0 which is not included in our stackage snapshot
- streamly-bytestring == 0.1.2
extra-packages:
- base16-bytestring < 1 # required for cabal-install etc.

View file

@ -250004,6 +250004,28 @@ self: {
}) {};
"streamly-bytestring" = callPackage
({ mkDerivation, base, bytestring, deepseq, directory, filepath
, gauge, hspec, hspec-discover, quickcheck-instances, random
, streamly, temporary
}:
mkDerivation {
pname = "streamly-bytestring";
version = "0.1.2";
sha256 = "1j9lpggz23idlkj8rvb8bqg29xfzb7cmzf3lhyc43i5w73jslkv3";
libraryHaskellDepends = [ base bytestring streamly ];
testHaskellDepends = [
base bytestring directory filepath hspec hspec-discover
quickcheck-instances random streamly temporary
];
testToolDepends = [ hspec-discover ];
benchmarkHaskellDepends = [
base bytestring deepseq gauge random streamly
];
description = "Library for streamly and bytestring interoperation";
license = lib.licenses.bsd3;
}) {};
"streamly-bytestring_0_1_3" = callPackage
({ mkDerivation, base, bytestring, deepseq, directory, filepath
, gauge, hspec, hspec-discover, quickcheck-instances, random
, streamly, temporary
@ -250023,6 +250045,7 @@ self: {
];
description = "Library for streamly and bytestring interoperation";
license = lib.licenses.bsd3;
hydraPlatforms = lib.platforms.none;
}) {};
"streamly-cassava" = callPackage