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