2017-02-05 23:43:58 -08:00
|
|
|
{ stdenv, lib, fetchgit, cmake, llvmPackages, boost, python2Packages
|
|
|
|
, gocode ? null
|
|
|
|
, godef ? null
|
|
|
|
, rustracerd ? null
|
2016-01-05 06:28:15 -08:00
|
|
|
}:
|
|
|
|
|
2016-09-26 02:09:25 -07:00
|
|
|
let
|
2017-02-05 23:43:58 -08:00
|
|
|
inherit (python2Packages) python mkPythonDerivation waitress frozendict bottle future argparse requests;
|
|
|
|
pathFixup = "import os; os.environ['PATH'] = ('{0}:{1}' if os.getenv('PATH', '') != '' else '{1}').format('$program_PATH', os.getenv('PATH', ''))";
|
2016-11-09 04:59:28 -08:00
|
|
|
in mkPythonDerivation rec {
|
2017-02-05 23:43:58 -08:00
|
|
|
name = "ycmd-${version}";
|
|
|
|
version = "2017-02-03";
|
2016-09-26 02:09:25 -07:00
|
|
|
namePrefix = "";
|
2016-01-05 06:28:15 -08:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/Valloric/ycmd.git";
|
2017-02-05 23:43:58 -08:00
|
|
|
rev = "ec7a154f8fe50c071ecd0ac6841de8a50ce92f5d";
|
|
|
|
sha256 = "0rzxgqqqmmrv9r4k2ji074iprhw6sb0jkvh84wvi45yfyphsh0xi";
|
2016-01-05 06:28:15 -08:00
|
|
|
};
|
|
|
|
|
2016-09-26 02:09:25 -07:00
|
|
|
buildInputs = [ cmake boost ];
|
2016-01-05 06:28:15 -08:00
|
|
|
|
2017-02-05 23:43:58 -08:00
|
|
|
propagatedBuildInputs = [ waitress frozendict bottle future argparse requests ];
|
2016-01-05 06:28:15 -08:00
|
|
|
|
|
|
|
buildPhase = ''
|
2016-08-17 15:35:30 -07:00
|
|
|
export EXTRA_CMAKE_ARGS=-DPATH_TO_LLVM_ROOT=${llvmPackages.clang-unwrapped}
|
2016-09-26 02:09:25 -07:00
|
|
|
${python.interpreter} build.py --clang-completer --system-boost
|
2016-01-05 06:28:15 -08:00
|
|
|
'';
|
|
|
|
|
|
|
|
configurePhase = ":";
|
|
|
|
|
2017-02-05 23:43:58 -08:00
|
|
|
# remove the tests
|
|
|
|
#
|
|
|
|
# make __main__.py executable so mkPythonDerivation's postFixup modifies the
|
|
|
|
# executable (e.g. fixup PYTHONPATH)
|
|
|
|
#
|
|
|
|
# add a shebang (will be rewritten by postFixup)
|
|
|
|
#
|
|
|
|
# symlink completion backends where ycmd expects them
|
2016-11-09 04:59:28 -08:00
|
|
|
installPhase = ''
|
2017-02-05 23:43:58 -08:00
|
|
|
rm -rf ycmd/tests
|
|
|
|
|
|
|
|
chmod +x ycmd/__main__.py
|
|
|
|
sed -i "1i #!/usr/bin/env python\
|
|
|
|
" ycmd/__main__.py
|
|
|
|
|
|
|
|
mkdir -p $out/lib/ycmd
|
|
|
|
cp -r ycmd/ CORE_VERSION libclang.so.* ycm_core.so $out/lib/ycmd/
|
|
|
|
|
|
|
|
mkdir -p $out/bin
|
2016-01-05 06:28:15 -08:00
|
|
|
ln -s $out/lib/ycmd/ycmd/__main__.py $out/bin/ycmd
|
2017-02-05 23:43:58 -08:00
|
|
|
|
|
|
|
mkdir -p $out/lib/ycmd/third_party/{gocode,godef,racerd/target/release}
|
|
|
|
cp -r third_party/JediHTTP/ $out/lib/ycmd/third_party
|
|
|
|
'' + lib.optionalString (gocode != null) ''
|
|
|
|
ln -s ${gocode}/bin/gocode $out/lib/ycmd/third_party/gocode
|
|
|
|
'' + lib.optionalString (godef != null) ''
|
|
|
|
ln -s ${godef}/bin/godef $out/lib/ycmd/third_party/godef
|
|
|
|
'' + lib.optionalString (rustracerd != null) ''
|
|
|
|
ln -s ${rustracerd}/bin/racerd $out/lib/ycmd/third_party/racerd/target/release
|
|
|
|
'';
|
|
|
|
|
|
|
|
# mkPythonDerivation will attempt to create a wrapper script (written in bash)
|
|
|
|
# but we don't want the indirection as several editor plugins want to invoke
|
|
|
|
# ycmd as `python path/to/ycmd`, which will obviously fail in that case -
|
|
|
|
# so we move the original file back over
|
|
|
|
#
|
|
|
|
# also fixup the argv[0] and replace __file__ with the corresponding path so
|
|
|
|
# python won't be thrown off by argv[0]
|
|
|
|
postFixup = ''
|
|
|
|
mv $out/lib/ycmd/ycmd/{.__main__.py-wrapped,__main__.py}
|
|
|
|
|
|
|
|
substituteInPlace $out/lib/ycmd/ycmd/__main__.py \
|
|
|
|
--replace $out/lib/ycmd/ycmd/__main__.py \
|
|
|
|
$out/bin/ycmd \
|
|
|
|
--replace __file__ \
|
|
|
|
"'$out/lib/ycmd/ycmd/__main__.py'"
|
2016-01-05 06:28:15 -08:00
|
|
|
'';
|
|
|
|
|
2016-07-07 16:40:33 -07:00
|
|
|
meta = with stdenv.lib; {
|
2016-01-05 06:28:15 -08:00
|
|
|
description = "A code-completion and comprehension server";
|
2016-07-07 16:40:33 -07:00
|
|
|
homepage = https://github.com/Valloric/ycmd;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ rasendubi ];
|
|
|
|
platforms = platforms.all;
|
2016-01-05 06:28:15 -08:00
|
|
|
};
|
|
|
|
}
|