pipes: Add Haskell 'pipes' family of libraries

This commit is contained in:
Oliver Charles
2013-09-08 12:40:37 +01:00
parent fa41e13ccf
commit a0ab379c00
12 changed files with 165 additions and 15 deletions

View File

@@ -0,0 +1,17 @@
{ cabal, network, networkSimple, pipes, pipesSafe, transformers }:
cabal.mkDerivation (self: {
pname = "pipes-network";
version = "0.6.0";
sha256 = "1jfj5bmpvf9vvq86jz8hbhzzjawchri90vx11fxcbz2ckks673k9";
buildDepends = [
network networkSimple pipes pipesSafe transformers
];
meta = {
homepage = "https://github.com/k0001/pipes-network";
description = "Use network sockets together with the pipes library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
})