c79027e3ab
haskell-hxt-charproperties: added version 9.1.0 haskell-hxt-regex-xmlschema: added version 9.0.1 haskell-hxt-unicode: added version 9.0.1 svn path=/nixpkgs/trunk/; revision=28995
24 lines
708 B
Nix
24 lines
708 B
Nix
{ cabal, binary, deepseq, HUnit, hxtCharproperties
|
|
, hxtRegexXmlschema, hxtUnicode, network, parsec
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hxt";
|
|
version = "9.1.4";
|
|
sha256 = "1dqnxb1dikw74l02sb6q193ipk9qfwqlgvcd362705mdqzai124c";
|
|
buildDepends = [
|
|
binary deepseq HUnit hxtCharproperties hxtRegexXmlschema hxtUnicode
|
|
network parsec
|
|
];
|
|
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
|
|
];
|
|
};
|
|
})
|