xmlrpc_c: enable __structuredAttrs, strictDeps

Also disable parallel building (fails randomly).
This commit is contained in:
FliegendeWurst
2026-07-21 22:52:12 +02:00
parent c9a4253fa2
commit 0a97deac0e
+18 -1
View File
@@ -4,6 +4,7 @@
fetchurl,
fetchDebianPatch,
pkg-config,
bashNonInteractive,
curl,
libxml2,
}:
@@ -12,6 +13,9 @@ stdenv.mkDerivation rec {
pname = "xmlrpc-c";
version = "1.60.05";
__structuredAttrs = true;
strictDeps = true;
src = fetchurl {
url = "mirror://sourceforge/xmlrpc-c/xmlrpc-c-${version}.tgz";
hash = "sha256-Z9hgBiRZ6ieEwHtNeRMxnZU5+nKfU0N46OQciRjyrfY=";
@@ -31,6 +35,7 @@ stdenv.mkDerivation rec {
'';
nativeBuildInputs = [
bashNonInteractive
pkg-config
];
@@ -43,12 +48,24 @@ stdenv.mkDerivation rec {
"--enable-libxml2-backend"
];
preConfigure = ''
export PATH="${
lib.makeBinPath [
(lib.getDev curl)
(lib.getDev libxml2)
]
}:$PATH"
'';
# Build and install the "xmlrpc" tool (like the Debian package)
postInstall = ''
(cd tools/xmlrpc && make && make install)
patchShebangs --build $out/bin/xmlrpc-c-config
'';
enableParallelBuilding = true;
# parallel make sometimes fails with:
# ln: failed to create symbolic link 'libxmlrpc_util.so.4': File exists
enableParallelBuilding = false;
# ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=implicit-function-declaration";