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