2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, text }:
|
2009-09-28 12:29:19 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-09-28 12:29:19 +01:00
|
|
|
pname = "polyparse";
|
2013-05-16 12:02:38 +01:00
|
|
|
version = "1.9";
|
|
|
|
sha256 = "12khjhv1dvs4j1jyh3law7m1gmkad8s6q7clh7w6l5ll2n1dc4lz";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ text ];
|
2009-09-28 12:29:19 +01:00
|
|
|
meta = {
|
2011-08-10 00:00:20 +01:00
|
|
|
homepage = "http://code.haskell.org/~malcolm/polyparse/";
|
2011-08-11 14:03:51 +01:00
|
|
|
description = "A variety of alternative parser combinator libraries";
|
2011-08-10 00:00:20 +01:00
|
|
|
license = "LGPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-09-28 12:29:19 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|