19 lines
598 B
Nix
19 lines
598 B
Nix
{ cabal, conduit, liftedBase, monadControl, network, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "network-conduit";
|
|
version = "1.0.2.2";
|
|
sha256 = "1l7r40raqbhfgwgp5knkqfg2b7pqm4h23c9slbx55r829if8c54h";
|
|
buildDepends = [
|
|
conduit liftedBase monadControl network transformers
|
|
];
|
|
testDepends = [ conduit ];
|
|
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 ];
|
|
};
|
|
})
|