Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
xercesc,
|
|
getopt,
|
|
cmake,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "xalan-c";
|
|
version = "1.12.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "apache";
|
|
repo = "xalan-c";
|
|
rev = "Xalan-C_1_12_0";
|
|
sha256 = "sha256:0q1204qk97i9h14vxxq7phcfpyiin0i1zzk74ixvg4wqy87b62s8";
|
|
};
|
|
|
|
patches = [
|
|
# See https://github.com/llvm/llvm-project/issues/96859
|
|
# xalan-c contains a templated code path that tries to access non-existent methods,
|
|
# but before Clang 19 and GCC 15 this was no error as the template was never instantiated.
|
|
# Note that the suggested fix of adding "-fdelayed-template-parsing"
|
|
# to CXX_FLAGS would be sufficient for Clang 19, but as it would break again
|
|
# once we upgrade to GCC 15, we remove the dead code entirely.
|
|
./0001-clang19-gcc15-compat.patch
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [
|
|
xercesc
|
|
getopt
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://xalan.apache.org/";
|
|
description = "XSLT processor for transforming XML documents";
|
|
mainProgram = "Xalan";
|
|
license = lib.licenses.asl20;
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
maintainers = [ lib.maintainers.jagajaga ];
|
|
};
|
|
}
|