19 lines
569 B
Nix
19 lines
569 B
Nix
{ cabal, conduit, liftedBase, monadControl, network, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "network-conduit";
|
|
version = "0.6.1.1";
|
|
sha256 = "00x5ks1qcq5smmd2g4bm23lb3ngdxmdlz822qkkj9l9c27lkn67n";
|
|
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 ];
|
|
};
|
|
})
|