ycmd: 2017-11-05 -> 2018-06-14 (#42080)

Fixes build with boost 1.67
This commit is contained in:
Daiderd Jordan
2018-06-18 00:09:29 +02:00
committed by xeji
parent 3babb8d84b
commit a2a83755a2
2 changed files with 5 additions and 41 deletions
+5 -8
View File
@@ -7,12 +7,12 @@
stdenv.mkDerivation rec {
name = "ycmd-${version}";
version = "2017-11-05";
version = "2018-06-14";
src = fetchgit {
url = "git://github.com/Valloric/ycmd.git";
rev = "0ca16e7ba3a9078b697befdce64104e61829aa3b";
sha256 = "0bs94iv521ac2n53n3k8mw3s6v0hi3hhxhjsr0ips3n99al8wndi";
url = "https://github.com/Valloric/ycmd.git";
rev = "29e36f74f749d10b8d6ce285c1453fac26f15a41";
sha256 = "0s62nf18jmgjihyba7lk7si8xrxsg60whdr430nlb5gjikag8zr5";
};
nativeBuildInputs = [ cmake ];
@@ -24,8 +24,6 @@ stdenv.mkDerivation rec {
${python.interpreter} build.py --system-libclang --clang-completer --system-boost
'';
patches = [ ./dont-symlink-clang.patch ];
configurePhase = ":";
# remove the tests
@@ -53,8 +51,7 @@ stdenv.mkDerivation rec {
mkdir -p $out/lib/ycmd/third_party/{gocode,godef,racerd/target/release}
cp -r third_party/JediHTTP $out/lib/ycmd/third_party
for p in waitress frozendict bottle python-future argparse requests; do
for p in jedi waitress frozendict bottle python-future requests; do
cp -r third_party/$p $out/lib/ycmd/third_party
done