mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
7869d16545
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb3
, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
68 lines
1.4 KiB
Nix
68 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, libclang
|
|
, libffi
|
|
, libxml2
|
|
, llvm
|
|
, sphinx
|
|
, zlib
|
|
, withManual ? true
|
|
, withHTML ? true
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "CastXML";
|
|
version = "0.4.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-MschwCEkZrZmNgr8a1ocdukjXzHbXl2gmkPmygJaA6k=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
llvm
|
|
] ++ lib.optionals (withManual || withHTML) [
|
|
sphinx
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCLANG_RESOURCE_DIR=${libclang.dev}/lib/clang/${lib.getVersion libclang}/"
|
|
"-DSPHINX_HTML=${if withHTML then "ON" else "OFF"}"
|
|
"-DSPHINX_MAN=${if withManual then "ON" else "OFF"}"
|
|
];
|
|
|
|
buildInputs = [
|
|
libffi
|
|
libxml2
|
|
zlib
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
libclang
|
|
];
|
|
|
|
# 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;
|
|
};
|
|
}
|