nixpkgs/pkgs/development/libraries/haskell/hxt/default.nix
2014-01-09 00:45:16 +01:00

22 lines
707 B
Nix

{ cabal, binary, deepseq, filepath, HUnit, hxtCharproperties
, hxtRegexXmlschema, hxtUnicode, mtl, network, parsec
}:
cabal.mkDerivation (self: {
pname = "hxt";
version = "9.3.1.3";
sha256 = "1ynca1d0wzql3vny9wxi47bim64h1l56gdamwkfhh4snajqkamwd";
buildDepends = [
binary deepseq filepath HUnit hxtCharproperties hxtRegexXmlschema
hxtUnicode mtl network parsec
];
jailbreak = true;
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 ];
};
})