nixpkgs/pkgs/development/tools/misc/ccls/default.nix

51 lines
1.4 KiB
Nix
Raw Normal View History

2019-08-21 20:56:11 +00:00
{ stdenv, fetchFromGitHub
, cmake, llvmPackages, rapidjson, runtimeShell }:
stdenv.mkDerivation rec {
pname = "ccls";
2019-09-26 11:16:41 +00:00
version = "0.20190823.3";
src = fetchFromGitHub {
owner = "MaskRay";
repo = "ccls";
rev = version;
2019-09-26 11:16:41 +00:00
sha256 = "1sx31zp6q2qc6fz3r78rx34zp2x4blrqzxwbpww71vb6lp1clmdm";
};
2019-08-21 20:56:11 +00:00
nativeBuildInputs = [ cmake ];
buildInputs = with llvmPackages; [ clang-unwrapped llvm rapidjson ];
2019-03-02 08:42:54 +00:00
cmakeFlags = [
2019-08-21 20:56:11 +00:00
"-DCCLS_VERSION=${version}"
2019-03-02 08:42:54 +00:00
"-DCMAKE_OSX_DEPLOYMENT_TARGET=10.12"
];
2019-05-13 07:58:22 +00:00
preConfigure = ''
cmakeFlagsArray+=(-DCMAKE_CXX_FLAGS="-fvisibility=hidden -fno-rtti")
'';
shell = runtimeShell;
postFixup = ''
# We need to tell ccls where to find the standard library headers.
standard_library_includes="\\\"-isystem\\\", \\\"${stdenv.lib.getDev stdenv.cc.libc}/include\\\""
standard_library_includes+=", \\\"-isystem\\\", \\\"${llvmPackages.libcxx}/include/c++/v1\\\""
export standard_library_includes
wrapped=".ccls-wrapped"
export wrapped
mv $out/bin/ccls $out/bin/$wrapped
substituteAll ${./wrapper} $out/bin/ccls
chmod --reference=$out/bin/$wrapped $out/bin/ccls
'';
meta = with stdenv.lib; {
description = "A c/c++ language server powered by clang";
homepage = https://github.com/MaskRay/ccls;
license = licenses.asl20;
2019-03-02 08:42:54 +00:00
platforms = platforms.linux ++ platforms.darwin;
2019-09-26 11:16:41 +00:00
maintainers = with maintainers; [ mic92 tobim ];
};
}