28 lines
1.1 KiB
Nix
28 lines
1.1 KiB
Nix
{ cabal, base16Bytestring, base64Bytestring, chunkedData, conduit
|
|
, conduitExtra, hspec, monadControl, monoTraversable, mwcRandom
|
|
, primitive, resourcet, silently, systemFileio, systemFilepath
|
|
, text, transformers, transformersBase, unixCompat, vector, void
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "conduit-combinators";
|
|
version = "0.2.5.1";
|
|
sha256 = "1xz8vh9pvh3897lnv1vs69g079q6qvbh334gpfnkc5lb7hvdw7qv";
|
|
buildDepends = [
|
|
base16Bytestring base64Bytestring chunkedData conduit conduitExtra
|
|
monadControl monoTraversable mwcRandom primitive resourcet
|
|
systemFileio systemFilepath text transformers transformersBase
|
|
unixCompat vector void
|
|
];
|
|
testDepends = [
|
|
base16Bytestring base64Bytestring chunkedData hspec monoTraversable
|
|
mwcRandom silently systemFilepath text transformers vector
|
|
];
|
|
meta = {
|
|
homepage = "https://github.com/fpco/conduit-combinators";
|
|
description = "Commonly used conduit functions, for both chunked and unchunked data";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|