Merge pull request #17809 from rasendubi/ycmd

ycmd: fix build

authored by Joachim F and committed by GitHub d7d7d28b 3c5594c5

+3 -2
+3 -2
pkgs/development/tools/misc/ycmd/default.nix
··· 10 10 sha256 = "1g0hivv3wla7z5dgnkcn3ny38p089pjfj36nx6k29zmprgmjinyr"; 11 11 }; 12 12 13 - buildInputs = [ python cmake llvmPackages.clang boost makeWrapper ]; 13 + buildInputs = [ python cmake boost makeWrapper ]; 14 14 15 15 propagatedBuildInputs = with pythonPackages; [ waitress frozendict bottle ]; 16 16 17 17 buildPhase = '' 18 - python build.py --clang-completer --system-libclang --system-boost 18 + export EXTRA_CMAKE_ARGS=-DPATH_TO_LLVM_ROOT=${llvmPackages.clang-unwrapped} 19 + python build.py --clang-completer --system-boost 19 20 ''; 20 21 21 22 configurePhase = ":";