mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
34 lines
885 B
Nix
34 lines
885 B
Nix
{ stdenv, fetchurl, curl, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xmlrpc-c-1.39.12";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/xmlrpc-c/${name}.tgz";
|
|
sha256 = "026fh7w7y3q9pvxd09i5d4hq3l6gd81n9k19yq4zwbc398kg6c6q";
|
|
};
|
|
|
|
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" ];
|
|
|
|
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;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|