2012-04-03 08:31:11 +02:00
|
|
|
{ cabal, conduit, liftedBase, monadControl, network, transformers
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "network-conduit";
|
2012-10-11 10:18:49 +02:00
|
|
|
version = "0.6.1.1";
|
|
|
|
sha256 = "00x5ks1qcq5smmd2g4bm23lb3ngdxmdlz822qkkj9l9c27lkn67n";
|
2012-04-03 08:31:11 +02:00
|
|
|
buildDepends = [
|
|
|
|
conduit liftedBase monadControl network transformers
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/snoyberg/conduit";
|
|
|
|
description = "Stream socket data using conduits";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
|
|
};
|
|
|
|
})
|