2012-04-03 07:31:11 +01:00
|
|
|
{ cabal, conduit, liftedBase, monadControl, network, transformers
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "network-conduit";
|
2014-01-28 09:31:43 +00:00
|
|
|
version = "1.0.2.1";
|
|
|
|
sha256 = "1dq7pwimjkr0wpyjphbvjy3klkcjl8jin76am5jbz3cxk1dr20jk";
|
2012-04-03 07:31:11 +01:00
|
|
|
buildDepends = [
|
|
|
|
conduit liftedBase monadControl network transformers
|
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ conduit ];
|
2012-04-03 07:31:11 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/snoyberg/conduit";
|
|
|
|
description = "Stream socket data using conduits";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-04-03 07:31:11 +01:00
|
|
|
};
|
|
|
|
})
|