5930e47068
- attoparsec-conduit: updated to version 0.4.0.1 - conduit: updated to version 0.4.2 - network-conduit: updated to version 0.4.0.1 - persistent-sqlite: updated to version 0.9.0.2 - persistent: updated to version 0.9.0.4 - semigroups: updated to version 0.8.3.1 - wai-app-static: updated to version 1.2.0.3 - wai-extra: updated to version 1.2.0.4 - wai: updated to version 1.2.0.2 - warp: updated to version 1.2.0.2 - xml-conduit: updated to version 0.7.0.2 svn path=/nixpkgs/trunk/; revision=34027
19 lines
569 B
Nix
19 lines
569 B
Nix
{ cabal, conduit, liftedBase, monadControl, network, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "network-conduit";
|
|
version = "0.4.0.1";
|
|
sha256 = "0xmfhar4knyn01xyigrp4lymb1vcsahd9v12i6rrqzi10mdcz6bl";
|
|
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 ];
|
|
};
|
|
})
|