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

@@ -1,13 +1,14 @@
{ cabal, pipes }:
{ cabal, free, pipes, transformers }:
cabal.mkDerivation (self: {
pname = "pipes-parse";
version = "1.0.0";
sha256 = "0fk39a6d0ik5ghwyj6yyi9d0cj2sp22812fin7amcxcafrplf88w";
buildDepends = [ pipes ];
version = "2.0.0";
sha256 = "092y0a4lvll451gnbz6ddrqgh22bd69wi00c0zd8s0hmf2f53y0s";
buildDepends = [ free pipes transformers ];
meta = {
description = "Parsing infrastructure for the pipes ecosystem";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
})