22 lines
647 B
Nix
22 lines
647 B
Nix
{ cabal, conduit, liftedBase, monadControl, network, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "network-conduit";
|
|
version = "1.0.0";
|
|
sha256 = "16kgg6wkpl10kcwfijm9iqi7r5gababaymxyhmjab6axfzknppk3";
|
|
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
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|