cvis: fix llvm build
This commit is contained in:
parent
6d46d8a9b9
commit
88beb7d77e
|
@ -1,5 +1,5 @@
|
||||||
{ lib, buildPythonApplication, fetchFromGitHub, cmake, flex
|
{ lib, buildPythonApplication, fetchFromGitHub, cmake, flex
|
||||||
, clang-unwrapped, llvm, unifdef
|
, libclang, llvm, unifdef
|
||||||
, pebble, psutil, pytestCheckHook, pytest-flake8
|
, pebble, psutil, pytestCheckHook, pytest-flake8
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -19,8 +19,8 @@ buildPythonApplication rec {
|
||||||
./unifdef.patch
|
./unifdef.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake flex ];
|
nativeBuildInputs = [ cmake flex llvm.dev ];
|
||||||
buildInputs = [ clang-unwrapped llvm unifdef ];
|
buildInputs = [ libclang llvm llvm.dev unifdef ];
|
||||||
propagatedBuildInputs = [ pebble psutil ];
|
propagatedBuildInputs = [ pebble psutil ];
|
||||||
checkInputs = [ pytestCheckHook pytest-flake8 unifdef ];
|
checkInputs = [ pytestCheckHook pytest-flake8 unifdef ];
|
||||||
|
|
||||||
|
|
|
@ -12768,7 +12768,7 @@ in
|
||||||
css-html-js-minify = with python3Packages; toPythonApplication css-html-js-minify;
|
css-html-js-minify = with python3Packages; toPythonApplication css-html-js-minify;
|
||||||
|
|
||||||
cvise = python3Packages.callPackage ../development/tools/misc/cvise {
|
cvise = python3Packages.callPackage ../development/tools/misc/cvise {
|
||||||
inherit (llvmPackages_11) llvm clang-unwrapped;
|
inherit (llvmPackages_11) llvm libclang;
|
||||||
};
|
};
|
||||||
|
|
||||||
libcxx = llvmPackages.libcxx;
|
libcxx = llvmPackages.libcxx;
|
||||||
|
|
Loading…
Reference in New Issue