2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl, curl, libxml2 }:
|
2012-02-23 03:27:47 -08:00
|
|
|
|
2013-08-26 13:42:46 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2020-05-27 14:25:11 -07:00
|
|
|
name = "xmlrpc-c-1.51.06";
|
2013-08-26 13:42:46 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/xmlrpc-c/${name}.tgz";
|
2020-05-27 14:25:11 -07:00
|
|
|
sha256 = "1l4zz22q10081vr06b8sii0l3krr64xyiywz6rcladw8kiyxip06";
|
2013-08-26 13:42:46 -07:00
|
|
|
};
|
2012-02-23 03:27:47 -08:00
|
|
|
|
2015-04-09 17:55:02 -07:00
|
|
|
buildInputs = [ curl libxml2 ];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-libxml2-backend"
|
|
|
|
];
|
2012-02-23 03:27:47 -08:00
|
|
|
|
2013-08-26 13:42:46 -07:00
|
|
|
# Build and install the "xmlrpc" tool (like the Debian package)
|
|
|
|
postInstall = ''
|
|
|
|
(cd tools/xmlrpc && make && make install)
|
|
|
|
'';
|
2012-02-23 03:27:47 -08:00
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-20 13:55:18 -08:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2013-08-26 13:42:46 -07:00
|
|
|
description = "A lightweight RPC library based on XML and HTTP";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://xmlrpc-c.sourceforge.net/";
|
2013-08-26 13:42:46 -07:00
|
|
|
# <xmlrpc-c>/doc/COPYING also lists "Expat license",
|
|
|
|
# "ABYSS Web Server License" and "Python 1.5.2 License"
|
|
|
|
license = licenses.bsd3;
|
2018-04-03 18:30:51 -07:00
|
|
|
platforms = platforms.unix;
|
2013-08-26 13:42:46 -07:00
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2012-02-23 03:27:47 -08:00
|
|
|
};
|
|
|
|
}
|