2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, binary, deepseq, filepath, HUnit, hxtCharproperties
|
2012-01-24 16:06:23 +01:00
|
|
|
, hxtRegexXmlschema, hxtUnicode, mtl, network, parsec
|
2011-09-03 15:17:29 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hxt";
|
2012-02-29 18:24:27 +01:00
|
|
|
version = "9.2.2";
|
|
|
|
sha256 = "0ichjpshq10b11dyfv1q7rs2m190x3gplx6k54amlxv45nwd1s6r";
|
2011-09-03 15:17:29 +02:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
binary deepseq filepath HUnit hxtCharproperties hxtRegexXmlschema
|
|
|
|
hxtUnicode mtl network parsec
|
2011-09-03 15:17:29 +02:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html";
|
|
|
|
description = "A collection of tools for processing XML with Haskell";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-03 15:17:29 +02:00
|
|
|
};
|
|
|
|
})
|