3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
21 lines
656 B
Nix
21 lines
656 B
Nix
{ cabal, blazeBuilder, conduit, hspec, QuickCheck, text
|
|
, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "blaze-builder-conduit";
|
|
version = "1.0.0";
|
|
sha256 = "15q0b0k5dxrp9cw2b4qf9mmjwz1mmxrn3890df5rc9z6yajajrc6";
|
|
buildDepends = [ blazeBuilder conduit text transformers ];
|
|
testDepends = [
|
|
blazeBuilder conduit hspec QuickCheck transformers
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/snoyberg/conduit";
|
|
description = "Convert streams of builders to streams of bytestrings";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|