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-20 20:03:12 +01:00
|
|
|
version = "9.2.1";
|
|
|
|
sha256 = "0172icb36wx4fb6q3xq7pcs85d2hnn4bznq3wjwhval10mayri8y";
|
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;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
|
|
|
};
|
|
|
|
})
|