2012-04-03 08:31:11 +02:00
|
|
|
{ cabal, conduit, liftedBase, monadControl, network, transformers
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "network-conduit";
|
2013-02-20 11:58:03 +01:00
|
|
|
version = "1.0.0";
|
|
|
|
sha256 = "16kgg6wkpl10kcwfijm9iqi7r5gababaymxyhmjab6axfzknppk3";
|
2012-04-03 08:31:11 +02:00
|
|
|
buildDepends = [
|
|
|
|
conduit liftedBase monadControl network transformers
|
|
|
|
];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [ conduit ];
|
2012-04-03 08:31:11 +02: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-03-23 14:57:25 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2012-04-03 08:31:11 +02:00
|
|
|
};
|
|
|
|
})
|