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
1
-
{ stdenv, fetchurl
2
2
-
, pkgconfig, libxml2, glibmm, perl }:
1
1
+
{ stdenv, fetchurl, pkgconfig, libxml2, glibmm, perl }:
2
2
+
3
3
stdenv.mkDerivation rec {
4
4
-
name = "libxml++-2.37.2";
4
4
+
name = "libxml++-2.38.0";
5
5
+
5
6
src = fetchurl {
6
6
-
url = "mirror://gnome/sources/libxml++/2.37/${name}.tar.xz";
7
7
-
sha256 = "0fvpm95iapi5qrz6sil6vnqqdrsd7f9a16c415hzr44f2ji10gmv";
7
7
+
url = "mirror://gnome/sources/libxml++/2.38/${name}.tar.xz";
8
8
+
sha256 = "0ihk7fprpshs0gp38x2m5jhvrph3iwr0wy1h1qqvh3rjblzv162n";
8
9
};
9
10
10
10
-
buildInputs = [ pkgconfig glibmm perl ];
11
11
+
nativeBuildInputs = [ pkgconfig perl ];
12
12
+
13
13
+
buildInputs = [ glibmm ];
11
14
12
15
propagatedBuildInputs = [ libxml2 ];
13
16
14
17
configureFlags = "--disable-documentation"; #doesn't build without this for some reason
15
18
16
16
-
meta = {
19
19
+
meta = with stdenv.lib; {
17
20
homepage = http://libxmlplusplus.sourceforge.net/;
18
21
description = "C++ wrapper for the libxml2 XML parser library";
19
19
-
license = stdenv.lib.licenses.lgpl2Plus;
20
20
-
maintainers = [ stdenv.lib.maintainers.phreedom ];
22
22
+
license = licenses.lgpl2Plus;
23
23
+
platforms = platforms.unix;
24
24
+
maintainers = with maintainers; [ phreedom wkennington ];
21
25
};
22
22
-
}
26
26
+
}