about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/cvise
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-05-08 15:52:23 -0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-08 18:13:45 -0700
commit88beb7d77ea3bfb05fedd7b3d757ded28c7c8420 (patch)
tree28750c1938040437ae9cb56f589d7e2ad0060178 /pkgs/development/tools/misc/cvise
parent6d46d8a9b9bc7fbb9e0d341ee7d3fed503236ebb (diff)
cvis: fix llvm build
Diffstat (limited to 'pkgs/development/tools/misc/cvise')
-rw-r--r--pkgs/development/tools/misc/cvise/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/cvise/default.nix b/pkgs/development/tools/misc/cvise/default.nix
index fe33df530cfd8..e24c133e8b908 100644
--- a/pkgs/development/tools/misc/cvise/default.nix
+++ b/pkgs/development/tools/misc/cvise/default.nix
@@ -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 ];