tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libxml++: 2.37.2 -> 2.38.0
William A. Kennington III
10 years ago
bca07bda
14d52d7e
+14
-10
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libxmlxx
default.nix
+14
-10
pkgs/development/libraries/libxmlxx/default.nix
···
1
-
{ stdenv, fetchurl
2
-
, pkgconfig, libxml2, glibmm, perl }:
3
stdenv.mkDerivation rec {
4
-
name = "libxml++-2.37.2";
0
5
src = fetchurl {
6
-
url = "mirror://gnome/sources/libxml++/2.37/${name}.tar.xz";
7
-
sha256 = "0fvpm95iapi5qrz6sil6vnqqdrsd7f9a16c415hzr44f2ji10gmv";
8
};
9
10
-
buildInputs = [ pkgconfig glibmm perl ];
0
0
11
12
propagatedBuildInputs = [ libxml2 ];
13
14
configureFlags = "--disable-documentation"; #doesn't build without this for some reason
15
16
-
meta = {
17
homepage = http://libxmlplusplus.sourceforge.net/;
18
description = "C++ wrapper for the libxml2 XML parser library";
19
-
license = stdenv.lib.licenses.lgpl2Plus;
20
-
maintainers = [ stdenv.lib.maintainers.phreedom ];
0
21
};
22
-
}
···
1
+
{ stdenv, fetchurl, pkgconfig, libxml2, glibmm, perl }:
2
+
3
stdenv.mkDerivation rec {
4
+
name = "libxml++-2.38.0";
5
+
6
src = fetchurl {
7
+
url = "mirror://gnome/sources/libxml++/2.38/${name}.tar.xz";
8
+
sha256 = "0ihk7fprpshs0gp38x2m5jhvrph3iwr0wy1h1qqvh3rjblzv162n";
9
};
10
11
+
nativeBuildInputs = [ pkgconfig perl ];
12
+
13
+
buildInputs = [ glibmm ];
14
15
propagatedBuildInputs = [ libxml2 ];
16
17
configureFlags = "--disable-documentation"; #doesn't build without this for some reason
18
19
+
meta = with stdenv.lib; {
20
homepage = http://libxmlplusplus.sourceforge.net/;
21
description = "C++ wrapper for the libxml2 XML parser library";
22
+
license = licenses.lgpl2Plus;
23
+
platforms = platforms.unix;
24
+
maintainers = with maintainers; [ phreedom wkennington ];
25
};
26
+
}