2013-09-08 12:40:37 +01:00
|
|
|
{ cabal, free, pipes, transformers }:
|
2013-06-04 10:57:21 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "pipes-parse";
|
2013-11-05 13:22:52 +00:00
|
|
|
version = "2.0.2";
|
|
|
|
sha256 = "1jcws5i9jhh4i6bh2j6m9pz1462qm05byibkkxfqvyx392sxy4wz";
|
2013-09-08 12:40:37 +01:00
|
|
|
buildDepends = [ free pipes transformers ];
|
2013-06-04 10:57:21 +01:00
|
|
|
meta = {
|
|
|
|
description = "Parsing infrastructure for the pipes ecosystem";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-09-08 12:40:37 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
2013-06-04 10:57:21 +01:00
|
|
|
};
|
|
|
|
})
|