Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ycmd: use libclang

authored by

Daiderd Jordan and committed by
Tuomas Tynkkynen
28079203 4c5109b2

+3 -2
+3 -2
pkgs/development/tools/misc/ycmd/default.nix
··· 15 sha256 = "0bs94iv521ac2n53n3k8mw3s6v0hi3hhxhjsr0ips3n99al8wndi"; 16 }; 17 18 - buildInputs = [ cmake boost ] 19 ++ stdenv.lib.optional stdenv.isDarwin [ fixDarwinDylibNames Cocoa ]; 20 21 buildPhase = '' 22 export EXTRA_CMAKE_ARGS=-DPATH_TO_LLVM_ROOT=${llvmPackages.clang-unwrapped} 23 - ${python.interpreter} build.py --clang-completer --system-boost 24 ''; 25 26 patches = [ ./dont-symlink-clang.patch ];
··· 15 sha256 = "0bs94iv521ac2n53n3k8mw3s6v0hi3hhxhjsr0ips3n99al8wndi"; 16 }; 17 18 + nativeBuildInputs = [ cmake ]; 19 + buildInputs = [ boost llvmPackages.libclang ] 20 ++ stdenv.lib.optional stdenv.isDarwin [ fixDarwinDylibNames Cocoa ]; 21 22 buildPhase = '' 23 export EXTRA_CMAKE_ARGS=-DPATH_TO_LLVM_ROOT=${llvmPackages.clang-unwrapped} 24 + ${python.interpreter} build.py --system-libclang --clang-completer --system-boost 25 ''; 26 27 patches = [ ./dont-symlink-clang.patch ];