We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e236bf6 commit a28796bCopy full SHA for a28796b
pkgs/by-name/ca/castxml/package.nix
@@ -32,11 +32,12 @@ stdenv.mkDerivation (finalAttrs: {
32
nativeBuildInputs = [ cmake ] ++ lib.optionals (withManual || withHTML) [ sphinx ];
33
34
buildInputs = [
35
+ libclang
36
libffi
37
libxml2
38
llvm
39
zlib
- ] ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ libclang ];
40
+ ];
41
42
cmakeFlags =
43
[
@@ -46,9 +47,6 @@ stdenv.mkDerivation (finalAttrs: {
46
47
48
(lib.cmakeBool "SPHINX_HTML" withHTML)
49
(lib.cmakeBool "SPHINX_MAN" withManual)
- ]
50
- ++ lib.optionals stdenv.hostPlatform.isDarwin [
51
- (lib.cmakeOptionType "path" "Clang_DIR" "${lib.getDev libclang}/lib/cmake/clang")
52
];
53
54
doCheck = true;
0 commit comments