3
0
Fork 0
forked from mirrors/nixpkgs

haskell-libxml-sax: add version 0.7.3

This commit is contained in:
Peter Simons 2012-10-15 20:07:54 +02:00
parent 34380b91a6
commit e7121b6f27
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ cabal, libxml2, text, xmlTypes }:
cabal.mkDerivation (self: {
pname = "libxml-sax";
version = "0.7.3";
sha256 = "1514ix5n8y1dwjdm0kmr17fdigc0ic89gzwdvfgh542sjm11100r";
buildDepends = [ text xmlTypes ];
extraLibraries = [ libxml2 ];
pkgconfigDepends = [ libxml2 ];
meta = {
homepage = "https://john-millikin.com/software/haskell-libxml/";
description = "Bindings for the libXML2 SAX interface";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1089,6 +1089,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
liblastfm = callPackage ../development/libraries/haskell/liblastfm {};
libxmlSax = callPackage ../development/libraries/haskell/libxml-sax {};
liftedBase = callPackage ../development/libraries/haskell/lifted-base {};
ListLike = callPackage ../development/libraries/haskell/ListLike {};