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";
|
2011-07-30 14:43:39 -07:00
|
|
|
version = "1.7";
|
|
|
|
sha256 = "de8ed0ce54f1f81bb0783dd97b7b22eca28df4a238684a26b37c5af2d17a364b";
|
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;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-09-28 04:29:19 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|