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-10-16 12:18:33 +02:00
|
|
|
version = "9.3.1.1";
|
|
|
|
sha256 = "1x0z85vx49s2b9bgjm14c2152cwr0vzf02rlxrla5dj5g565985y";
|
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
|
|
|
];
|
2012-09-28 10:35:15 +02:00
|
|
|
jailbreak = true;
|
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
|
|
|
};
|
|
|
|
})
|