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