2024-03-27 21:46:13 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, ninja
|
|
|
|
, python
|
|
|
|
, withGodef ? true
|
|
|
|
, godef
|
|
|
|
, withGotools ? true
|
|
|
|
, gotools
|
|
|
|
, withTypescript ? true
|
|
|
|
, typescript
|
|
|
|
, abseil-cpp
|
|
|
|
, boost
|
|
|
|
, llvmPackages
|
|
|
|
, fixDarwinDylibNames
|
|
|
|
, Cocoa
|
2016-01-05 14:28:15 +00:00
|
|
|
}:
|
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "ycmd";
|
2023-11-30 10:48:06 +00:00
|
|
|
version = "unstable-2023-11-06";
|
2020-02-25 15:28:26 +00:00
|
|
|
disabled = !python.isPy3k;
|
2016-01-05 14:28:15 +00:00
|
|
|
|
2021-10-26 11:35:17 +00:00
|
|
|
# required for third_party directory creation
|
2022-03-09 09:27:03 +00:00
|
|
|
src = fetchFromGitHub {
|
2022-08-16 11:53:14 +00:00
|
|
|
owner = "ycm-core";
|
2022-03-09 09:27:03 +00:00
|
|
|
repo = "ycmd";
|
2023-11-30 10:48:06 +00:00
|
|
|
rev = "0607eed2bc211f88f82657b7781f4fe66579855b";
|
|
|
|
hash = "sha256-SzEcMQ4lX7NL2/g9tuhA6CaZ8pX/DGs7Fla/gr+RcOU=";
|
2022-03-09 09:27:03 +00:00
|
|
|
fetchSubmodules = true;
|
2016-01-05 14:28:15 +00:00
|
|
|
};
|
|
|
|
|
2022-08-16 11:53:14 +00:00
|
|
|
nativeBuildInputs = [ cmake ninja ]
|
2021-01-23 12:26:19 +00:00
|
|
|
++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
2022-08-16 11:53:14 +00:00
|
|
|
buildInputs = with python.pkgs; with llvmPackages; [ abseil-cpp boost libllvm.all libclang.all ]
|
2024-03-27 21:46:13 +00:00
|
|
|
++ [ jedi jedi-language-server pybind11 ]
|
2021-10-26 11:35:17 +00:00
|
|
|
++ lib.optional stdenv.hostPlatform.isDarwin Cocoa;
|
2016-01-05 14:28:15 +00:00
|
|
|
|
|
|
|
buildPhase = ''
|
2022-08-16 11:53:14 +00:00
|
|
|
export EXTRA_CMAKE_ARGS="-DPATH_TO_LLVM_ROOT=${llvmPackages.libllvm} -DUSE_SYSTEM_ABSEIL=true"
|
2023-11-06 01:38:24 +00:00
|
|
|
${python.pythonOnBuildForHost.interpreter} build.py --system-libclang --clang-completer --ninja
|
2016-01-05 14:28:15 +00:00
|
|
|
'';
|
|
|
|
|
2019-06-19 15:36:06 +00:00
|
|
|
dontConfigure = true;
|
2016-01-05 14:28:15 +00:00
|
|
|
|
2017-02-06 07:43:58 +00:00
|
|
|
# remove the tests
|
|
|
|
#
|
2017-02-10 04:39:16 +00:00
|
|
|
# make __main__.py executable and add shebang
|
2017-02-06 07:43:58 +00:00
|
|
|
#
|
2017-02-10 04:39:16 +00:00
|
|
|
# copy over third-party libs
|
|
|
|
# note: if we switch to using our packaged libs, we'll need to symlink them
|
|
|
|
# into the same spots, as YouCompleteMe (the vim plugin) expects those paths
|
|
|
|
# to be available
|
2017-02-06 07:43:58 +00:00
|
|
|
#
|
|
|
|
# symlink completion backends where ycmd expects them
|
2016-11-09 12:59:28 +00:00
|
|
|
installPhase = ''
|
2017-02-06 07:43:58 +00:00
|
|
|
rm -rf ycmd/tests
|
2024-03-27 21:46:45 +00:00
|
|
|
find third_party -type d -name "test" -exec rm -rf {} +
|
2017-02-06 07:43:58 +00:00
|
|
|
|
|
|
|
chmod +x ycmd/__main__.py
|
2017-02-10 04:39:16 +00:00
|
|
|
sed -i "1i #!${python.interpreter}\
|
2017-02-06 07:43:58 +00:00
|
|
|
" ycmd/__main__.py
|
|
|
|
|
|
|
|
mkdir -p $out/lib/ycmd
|
2022-08-16 11:53:14 +00:00
|
|
|
cp -r ycmd/ CORE_VERSION *.so* *.dylib* $out/lib/ycmd/
|
2017-02-06 07:43:58 +00:00
|
|
|
|
|
|
|
mkdir -p $out/bin
|
2016-01-05 14:28:15 +00:00
|
|
|
ln -s $out/lib/ycmd/ycmd/__main__.py $out/bin/ycmd
|
2017-02-06 07:43:58 +00:00
|
|
|
|
2019-09-20 13:23:09 +00:00
|
|
|
# Copy everything: the structure of third_party has been known to change.
|
|
|
|
# When linking our own libraries below, do so with '-f'
|
|
|
|
# to clobber anything we may have copied here.
|
2019-09-20 18:22:09 +00:00
|
|
|
mkdir -p $out/lib/ycmd/third_party
|
2019-09-20 13:23:09 +00:00
|
|
|
cp -r third_party/* $out/lib/ycmd/third_party/
|
2017-02-10 04:39:16 +00:00
|
|
|
|
2021-10-26 11:35:17 +00:00
|
|
|
'' + lib.optionalString withGodef ''
|
2019-09-20 18:22:09 +00:00
|
|
|
TARGET=$out/lib/ycmd/third_party/godef
|
|
|
|
mkdir -p $TARGET
|
|
|
|
ln -sf ${godef}/bin/godef $TARGET
|
2021-10-26 11:35:17 +00:00
|
|
|
'' + lib.optionalString withGotools ''
|
2019-09-20 18:22:09 +00:00
|
|
|
TARGET=$out/lib/ycmd/third_party/go/src/golang.org/x/tools/cmd/gopls
|
|
|
|
mkdir -p $TARGET
|
|
|
|
ln -sf ${gotools}/bin/gopls $TARGET
|
2021-10-26 11:35:17 +00:00
|
|
|
'' + lib.optionalString withTypescript ''
|
2020-04-24 19:02:31 +00:00
|
|
|
TARGET=$out/lib/ycmd/third_party/tsserver
|
2023-06-26 18:36:12 +00:00
|
|
|
ln -sf ${typescript} $TARGET
|
2017-02-06 07:43:58 +00:00
|
|
|
'';
|
|
|
|
|
2017-02-10 04:39:16 +00:00
|
|
|
# fixup the argv[0] and replace __file__ with the corresponding path so
|
2017-02-06 07:43:58 +00:00
|
|
|
# python won't be thrown off by argv[0]
|
|
|
|
postFixup = ''
|
|
|
|
substituteInPlace $out/lib/ycmd/ycmd/__main__.py \
|
2021-10-26 11:35:17 +00:00
|
|
|
--replace __file__ "'$out/lib/ycmd/ycmd/__main__.py'"
|
2016-01-05 14:28:15 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2016-01-05 14:28:15 +00:00
|
|
|
description = "Code-completion and comprehension server";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "ycmd";
|
2022-08-16 11:53:14 +00:00
|
|
|
homepage = "https://github.com/ycm-core/ycmd";
|
2016-07-07 23:40:33 +00:00
|
|
|
license = licenses.gpl3;
|
2023-09-29 22:29:36 +00:00
|
|
|
maintainers = with maintainers; [ rasendubi lnl7 siriobalmelli ];
|
2016-07-07 23:40:33 +00:00
|
|
|
platforms = platforms.all;
|
2016-01-05 14:28:15 +00:00
|
|
|
};
|
|
|
|
}
|