1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

New derivation: hxt-tagsoup #haskell

This commit is contained in:
vi 2014-06-16 13:32:24 +08:00
parent 5f960cc893
commit fd08da1116
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ cabal, hxt, hxtCharproperties, hxtUnicode, tagsoup }:
cabal.mkDerivation (self: {
pname = "hxt-tagsoup";
version = "9.1.3";
sha256 = "1rp499j6w3h9xfxqyw2fn05ffq3z0wg1r9h2c205m37mb8visq77";
buildDepends = [ hxt hxtCharproperties hxtUnicode tagsoup ];
meta = {
homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html";
description = "TagSoup parser for HXT";
license = "unknown";
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1210,6 +1210,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
hxtRegexXmlschema = callPackage ../development/libraries/haskell/hxt-regex-xmlschema {};
hxtTagsoup = callPackage ../development/libraries/haskell/hxt-tagsoup {};
hxtUnicode = callPackage ../development/libraries/haskell/hxt-unicode {};
hxtXpath = callPackage ../development/libraries/haskell/hxt-xpath {};