5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
78 lines
1.6 KiB
Nix
78 lines
1.6 KiB
Nix
{
|
|
cmake,
|
|
fetchFromGitHub,
|
|
lib,
|
|
libffi,
|
|
libxml2,
|
|
llvmPackages,
|
|
python3,
|
|
stdenv,
|
|
zlib,
|
|
# Boolean flags
|
|
withHTML ? true,
|
|
withManual ? true,
|
|
}:
|
|
|
|
let
|
|
inherit (llvmPackages) libclang llvm;
|
|
inherit (python3.pkgs) sphinx;
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "castxml";
|
|
version = "0.6.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CastXML";
|
|
repo = "CastXML";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-icTos9HboZXvojQPX+pRkpBYiZ5SXSMb9XtvRnXNHuo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
(lib.getDev llvm)
|
|
]
|
|
++ lib.optionals (withManual || withHTML) [
|
|
sphinx
|
|
];
|
|
|
|
buildInputs = [
|
|
libclang
|
|
libffi
|
|
libxml2
|
|
zlib
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
libclang
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeOptionType "path" "CLANG_RESOURCE_DIR" "${lib.getDev libclang}")
|
|
(lib.cmakeBool "SPHINX_HTML" withHTML)
|
|
(lib.cmakeBool "SPHINX_MAN" withManual)
|
|
];
|
|
|
|
# 97% tests passed, 97 tests failed out of 2881
|
|
# mostly because it checks command line and nix append -isystem and all
|
|
doCheck = false;
|
|
|
|
strictDeps = true;
|
|
|
|
# -E exclude 4 tests based on names
|
|
# see https://github.com/CastXML/CastXML/issues/90
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
ctest -E 'cmd.cc-(gnu|msvc)-((c-src-c)|(src-cxx))-cmd'
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/CastXML/CastXML";
|
|
description = "C-family Abstract Syntax Tree XML Output";
|
|
license = lib.licenses.asl20;
|
|
mainProgram = "castxml";
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|