Skip to content

Commit

Permalink
Merge pull request #997 from ocharles/pipes-bytestring
Browse files Browse the repository at this point in the history
haskellPackages.pipesBytestring: New expression
  • Loading branch information
peti committed Sep 21, 2013
2 parents 514a095 + d33ca4a commit 87a8467
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pkgs/development/libraries/haskell/pipes-bytestring/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
})
2 changes: 2 additions & 0 deletions pkgs/top-level/haskell-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {};
Expand Down

0 comments on commit 87a8467

Please sign in to comment.