2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, hxtCharproperties, parsec }:
|
2011-09-03 15:17:29 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hxt-regex-xmlschema";
|
2013-02-18 11:11:15 +01:00
|
|
|
version = "9.1.0";
|
|
|
|
sha256 = "0l97rkrvl6pmxdgiwbwh2s3l00lyaihrhsffhh69639bgs67zgwr";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ hxtCharproperties parsec ];
|
2011-09-03 15:17:29 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema";
|
|
|
|
description = "A regular expression library for W3C XML Schema regular expressions";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 14:57:25 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-09-03 15:17:29 +02:00
|
|
|
};
|
|
|
|
})
|