Merge pull request #997 from ocharles/pipes-bytestring

haskellPackages.pipesBytestring: New expression
This commit is contained in:
Peter Simons 2013-09-21 02:19:05 -07:00
commit 87a8467554
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ cabal, pipes, pipesParse, transformers }:
cabal.mkDerivation (self: {
pname = "pipes-bytestring";
version = "1.0.1";
sha256 = "0zk2n9mly1mjh1zb3z33gab362abgh8c0mw88mmwnlfszq97hcz7";
buildDepends = [ pipes pipesParse transformers ];
meta = {
description = "ByteString support for pipes";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
})

View file

@ -1666,6 +1666,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
pipesAttoparsec = callPackage ../development/libraries/haskell/pipes-attoparsec {};
pipesBytestring = callPackage ../development/libraries/haskell/pipes-bytestring {};
pipesConcurrency = callPackage ../development/libraries/haskell/pipes-concurrency {};
pipesNetwork = callPackage ../development/libraries/haskell/pipes-network {};