blob: 0ef02c177e129261ee349c491c1334b5b245026d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
{
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 = [ ];
};
}
|