about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2018-07-24 21:53:58 +0200
committerDaiderd Jordan <daiderd@gmail.com>2018-07-24 21:53:58 +0200
commit7dde18891f1e67269e3e9c18ec5e8c3ce7c76823 (patch)
treed6d0651db924b0075b7a154191db90d189b9e0cf /pkgs
parent4c0cc62d2976f0e25dad0fa6810980ea04a16092 (diff)
downloadnixlib-7dde18891f1e67269e3e9c18ec5e8c3ce7c76823.tar
nixlib-7dde18891f1e67269e3e9c18ec5e8c3ce7c76823.tar.gz
nixlib-7dde18891f1e67269e3e9c18ec5e8c3ce7c76823.tar.bz2
nixlib-7dde18891f1e67269e3e9c18ec5e8c3ce7c76823.tar.lz
nixlib-7dde18891f1e67269e3e9c18ec5e8c3ce7c76823.tar.xz
nixlib-7dde18891f1e67269e3e9c18ec5e8c3ce7c76823.tar.zst
nixlib-7dde18891f1e67269e3e9c18ec5e8c3ce7c76823.zip
ycmd: 2018-06-14 -> 2018-07-24
Also added missing parso library, this caused issues with the python
semantic completion (and possibly others)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/misc/ycmd/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/ycmd/default.nix b/pkgs/development/tools/misc/ycmd/default.nix
index 2eb9b453661b..c0e12aa22c44 100644
--- a/pkgs/development/tools/misc/ycmd/default.nix
+++ b/pkgs/development/tools/misc/ycmd/default.nix
@@ -7,12 +7,12 @@
 
 stdenv.mkDerivation rec {
   name = "ycmd-${version}";
-  version = "2018-06-14";
+  version = "2018-07-24";
 
   src = fetchgit {
     url = "https://github.com/Valloric/ycmd.git";
-    rev = "29e36f74f749d10b8d6ce285c1453fac26f15a41";
-    sha256 = "0s62nf18jmgjihyba7lk7si8xrxsg60whdr430nlb5gjikag8zr5";
+    rev = "f8a8b04892b925efeee24298a957cc6d6a69ad06";
+    sha256 = "1br2sh6bs0fg1axq2hq9f48fz8klkzydi1mf0j0jdsh3zjzkmxbn";
   };
 
   nativeBuildInputs = [ cmake ];
@@ -51,7 +51,7 @@ stdenv.mkDerivation rec {
 
     mkdir -p $out/lib/ycmd/third_party/{gocode,godef,racerd/target/release}
 
-    for p in jedi waitress frozendict bottle python-future requests; do
+    for p in jedi waitress frozendict bottle parso python-future requests; do
       cp -r third_party/$p $out/lib/ycmd/third_party
     done