1 { lib, stdenv, fetchurl, curl, libxml2 }:
3 stdenv.mkDerivation rec {
4 name = "xmlrpc-c-1.51.07";
7 url = "mirror://sourceforge/xmlrpc-c/${name}.tgz";
8 sha256 = "sha256-hNIK4z+SdYL4IdYcC5GUrvvx15JFkKE/qdpa4WmK3tk=";
11 buildInputs = [ curl libxml2 ];
14 "--enable-libxml2-backend"
17 # Build and install the "xmlrpc" tool (like the Debian package)
19 (cd tools/xmlrpc && make && make install)
22 hardeningDisable = [ "format" ];
25 description = "A lightweight RPC library based on XML and HTTP";
26 homepage = "http://xmlrpc-c.sourceforge.net/";
27 # <xmlrpc-c>/doc/COPYING also lists "Expat license",
28 # "ABYSS Web Server License" and "Python 1.5.2 License"
29 license = licenses.bsd3;
30 platforms = platforms.unix;
31 maintainers = [ maintainers.bjornfor ];