nixpkgs/pkgs/development/tools/castxml/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
1.4 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, cmake
, libclang
, libffi
, libxml2
, llvm
, sphinx
, zlib
, withManual ? true
, withHTML ? true
}:
2022-11-12 23:03:10 +00:00
stdenv.mkDerivation (finalAttrs: {
pname = "castxml";
2022-12-07 21:03:20 +00:00
version = "0.5.0";
src = fetchFromGitHub {
2022-11-12 23:03:10 +00:00
owner = "CastXML";
repo = "CastXML";
rev = "v${finalAttrs.version}";
2022-12-07 21:03:20 +00:00
hash = "sha256-NJ6DIZWab9KayFALHON9GfYg6sQOf71SbtfV+3TYKLQ=";
};
nativeBuildInputs = [
cmake
2021-05-07 22:09:34 +00:00
llvm.dev
] ++ lib.optionals (withManual || withHTML) [
sphinx
];
buildInputs = [
2022-01-03 20:16:28 +00:00
libclang
libffi
libxml2
zlib
];
propagatedBuildInputs = [
libclang
];
2022-01-03 20:16:28 +00:00
cmakeFlags = [
"-DCLANG_RESOURCE_DIR=${libclang.dev}/"
"-DSPHINX_HTML=${if withHTML then "ON" else "OFF"}"
"-DSPHINX_MAN=${if withManual then "ON" else "OFF"}"
];
# 97% tests passed, 97 tests failed out of 2881
# mostly because it checks command line and nix append -isystem and all
doCheck = false;
# -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 = with lib; {
homepage = "https://github.com/CastXML/CastXML";
description = "C-family Abstract Syntax Tree XML Output";
license = licenses.asl20;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix;
};
2022-11-12 23:03:10 +00:00
})