mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
Packaged libxml++
svn path=/nixpkgs/trunk/; revision=22417
This commit is contained in:
parent
01e1b1ff2e
commit
877d8a6f27
20
pkgs/development/libraries/libxmlxx/default.nix
Normal file
20
pkgs/development/libraries/libxmlxx/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv, fetchurl
|
||||
, pkgconfig, libxml2, glibmm, perl }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libxml++-2.30.0";
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/libxml++/2.30/${name}.tar.bz2";
|
||||
sha256 = "1hgpw9lld0k6z34kxrapz8dxf3cbgnnhkx6himnvw9ax3qf7p5gk";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig libxml2 glibmm perl ];
|
||||
|
||||
configureFlags = "--disable-documentation"; #doesn't build without this for some reason
|
||||
|
||||
meta = {
|
||||
homepage = http://libxmlplusplus.sourceforge.net/;
|
||||
description = "C++ wrapper for the libxml2 XML parser library";
|
||||
license = "LGPLv2+";
|
||||
maintainers = [ stdenv.lib.maintainers.phreedom ];
|
||||
};
|
||||
}
|
|
@ -4850,6 +4850,12 @@ let
|
|||
pythonSupport = true;
|
||||
};
|
||||
|
||||
libxmlxx = import ../development/libraries/libxmlxx {
|
||||
inherit stdenv fetchurl;
|
||||
inherit pkgconfig libxml2 perl;
|
||||
inherit (gtkLibs) glibmm;
|
||||
};
|
||||
|
||||
libxslt = makeOverridable (import ../development/libraries/libxslt) {
|
||||
inherit fetchurl stdenv libxml2;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue