Skip to content

Commit 0c74c56

Browse files
committed
xmlrpc_c: 1.59.03 -> 1.60.05
1 parent 231f9b2 commit 0c74c56

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

pkgs/by-name/xm/xmlrpc_c/package.nix

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,28 @@
22
lib,
33
stdenv,
44
fetchurl,
5+
pkg-config,
56
curl,
67
libxml2,
78
}:
89

910
stdenv.mkDerivation rec {
1011
pname = "xmlrpc-c";
11-
version = "1.59.03";
12+
version = "1.60.05";
1213

1314
src = fetchurl {
1415
url = "mirror://sourceforge/xmlrpc-c/${pname}-${version}.tgz";
15-
hash = "sha256-vbcdtCqwvlFZFVWIXRFoKwRMEDTUoylkAb+SHsCyM/4=";
16+
hash = "sha256-Z9hgBiRZ6ieEwHtNeRMxnZU5+nKfU0N46OQciRjyrfY=";
1617
};
1718

19+
postPatch = ''
20+
rm -rf lib/expat
21+
'';
22+
23+
nativeBuildInputs = [
24+
pkg-config
25+
];
26+
1827
buildInputs = [
1928
curl
2029
libxml2
@@ -37,8 +46,7 @@ stdenv.mkDerivation rec {
3746
meta = with lib; {
3847
description = "Lightweight RPC library based on XML and HTTP";
3948
homepage = "https://xmlrpc-c.sourceforge.net/";
40-
# <xmlrpc-c>/doc/COPYING also lists "Expat license",
41-
# "ABYSS Web Server License" and "Python 1.5.2 License"
49+
# <xmlrpc-c>/doc/COPYING also lists "ABYSS Web Server License" and "Python 1.5.2 License"
4250
license = licenses.bsd3;
4351
platforms = platforms.unix;
4452
maintainers = [ maintainers.bjornfor ];

0 commit comments

Comments
 (0)