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