1726c930cd
- fgl-visualize: added meta.maintainers - gtk2hs-buildtools: added version 0.12.3 - network-conduit: added version 0.4.0 - path-pieces: updated to version 0.1.1 - void: added version 0.5.5 svn path=/nixpkgs/trunk/; revision=33551
19 lines
567 B
Nix
19 lines
567 B
Nix
{ cabal, conduit, liftedBase, monadControl, network, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "network-conduit";
|
|
version = "0.4.0";
|
|
sha256 = "0h0s33nxihd4zy9mvy2vpdrpvjapacbl69ndsw5zrbqhwbpz3mzs";
|
|
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 ];
|
|
};
|
|
})
|