2012-04-03 08:31:11 +02:00
|
|
|
{ cabal, conduit, liftedBase, monadControl, network, transformers
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "network-conduit";
|
2012-09-10 15:08:23 +02:00
|
|
|
version = "0.5.0.1";
|
|
|
|
sha256 = "1rk8a8n1yily20y3jr51zbd00m2c6ic8gxw9rnmkr2cfs963l2v5";
|
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 ];
|
|
|
|
};
|
|
|
|
})
|