nixpkgs/pkgs/development/libraries/xmlrpc-c/default.nix

34 lines
887 B
Nix
Raw Normal View History

2015-04-10 01:55:02 +01:00
{ stdenv, fetchurl, curl, libxml2 }:
stdenv.mkDerivation rec {
2020-05-27 22:25:11 +01:00
name = "xmlrpc-c-1.51.06";
src = fetchurl {
url = "mirror://sourceforge/xmlrpc-c/${name}.tgz";
2020-05-27 22:25:11 +01:00
sha256 = "1l4zz22q10081vr06b8sii0l3krr64xyiywz6rcladw8kiyxip06";
};
2015-04-10 01:55:02 +01:00
buildInputs = [ curl libxml2 ];
configureFlags = [
"--enable-libxml2-backend"
];
# Build and install the "xmlrpc" tool (like the Debian package)
postInstall = ''
(cd tools/xmlrpc && make && make install)
'';
hardeningDisable = [ "format" ];
2016-02-20 21:55:18 +00: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;
maintainers = [ maintainers.bjornfor ];
};
}