Files
nixpkgs/pkgs/development/libraries/libxmlxx/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

58 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchurl,
pkg-config,
libxml2,
glibmm,
perl,
gnome,
}:
stdenv.mkDerivation rec {
pname = "libxml++";
version = "2.40.1";
src = fetchurl {
url = "mirror://gnome/sources/libxml++/${lib.versions.majorMinor version}/libxml++-${version}.tar.xz";
sha256 = "1sb3akryklvh2v6m6dihdnbpf1lkx441v972q9hlz1sq6bfspm2a";
};
configureFlags = [
# remove if library is updated
"CXXFLAGS=-std=c++11"
];
outputs = [
"out"
"devdoc"
];
nativeBuildInputs = [
pkg-config
perl
];
propagatedBuildInputs = [
libxml2
glibmm
];
passthru = {
updateScript = gnome.updateScript {
attrPath = "libxmlxx";
packageName = "libxml++";
versionPolicy = "odd-unstable";
freeze = true;
};
};
meta = {
homepage = "https://libxmlplusplus.sourceforge.net/";
description = "C++ wrapper for the libxml2 XML parser library";
license = lib.licenses.lgpl2Plus;
platforms = lib.platforms.unix;
maintainers = [ ];
};
}