1dd8249087
svn path=/nixpkgs/trunk/; revision=32437
24 lines
736 B
Nix
24 lines
736 B
Nix
{ cabal, binary, deepseq, filepath, HUnit, hxtCharproperties
|
|
, hxtRegexXmlschema, hxtUnicode, mtl, network, parsec
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hxt";
|
|
version = "9.2.1";
|
|
sha256 = "0172icb36wx4fb6q3xq7pcs85d2hnn4bznq3wjwhval10mayri8y";
|
|
buildDepends = [
|
|
binary deepseq filepath HUnit hxtCharproperties hxtRegexXmlschema
|
|
hxtUnicode mtl 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
|
|
];
|
|
};
|
|
})
|