2012-04-02 23:31:11 -07:00
|
|
|
{ cabal, conduit, liftedBase, monadControl, network, transformers
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "network-conduit";
|
2014-03-12 03:27:04 -07:00
|
|
|
version = "1.0.4";
|
|
|
|
sha256 = "1a7p3gs0rczx0rhz27410rr6fzy3l0nsj6kk5wi0nqvqfyh7jb9c";
|
2012-04-02 23:31:11 -07:00
|
|
|
buildDepends = [
|
|
|
|
conduit liftedBase monadControl network transformers
|
|
|
|
];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [ conduit ];
|
2012-04-02 23:31:11 -07: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 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-04-02 23:31:11 -07:00
|
|
|
};
|
|
|
|
})
|