
Fails to build on `gcc-14` as https://hydra.nixos.org/build/300549105: xbstring.cpp: In member function 'xbString& xbString::sprintf(const char*, ...)': xbstring.cpp:297:3: error: 'va_start' was not declared in this scope 297 | va_start(ap, format); | ^~~~~~~~ xbstring.cpp:314:3: error: 'va_end' was not declared in this scope 314 | va_end(ap); | ^~~~~~
41 lines
1.4 KiB
Nix
41 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xbase";
|
|
version = "3.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/xdb/xbase64-${version}.tar.gz";
|
|
sha256 = "17287kz1nmmm64y7zp9nhhl7slzlba09h6cc83w4mvsqwd9w882r";
|
|
};
|
|
|
|
prePatch = "find . -type f -not -name configure -print0 | xargs -0 chmod -x";
|
|
patches = [
|
|
./xbase-fixes.patch
|
|
(fetchurl {
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-db/xbase/files/xbase-3.1.2-gcc47.patch?id=0b9005ad4b5b743707922877e5157ba6ecdf224f";
|
|
sha256 = "1kpcrkkcqdwl609yd0qxlvp743icz3vni13993sz6fkgn5lah8yl";
|
|
})
|
|
(fetchurl {
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-db/xbase/files/xbase-3.1.2-gcc6.patch?id=0b9005ad4b5b743707922877e5157ba6ecdf224f";
|
|
sha256 = "1994pqiip5njkcmm5czb1bg6zdldkx1mpandgmvzqrja0iacf953";
|
|
})
|
|
(fetchurl {
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-db/xbase/files/xbase-3.1.2-gcc7.patch?id=0b9005ad4b5b743707922877e5157ba6ecdf224f";
|
|
sha256 = "1304gn9dbdv8xf61crkg0fc8cal0h4qkyhlbqa8y618w134cxh1q";
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://sourceforge.net/projects/xdb/";
|
|
description = "C++ class library formerly known as XDB";
|
|
platforms = platforms.linux;
|
|
broken = true; # Fails to build against gcc-14, no upstream activity.
|
|
license = licenses.lgpl2;
|
|
};
|
|
}
|