mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
cc27a10955
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ccls/versions
44 lines
1.3 KiB
Nix
44 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, makeWrapper
|
|
, cmake, llvmPackages, rapidjson, runtimeShell }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ccls-${version}";
|
|
version = "0.20190301";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MaskRay";
|
|
repo = "ccls";
|
|
rev = version;
|
|
sha256 = "1n60mly993czq3mnb82k8yqjrbfnsnx5v5dmr8ylqif3awcsk04i";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake makeWrapper ];
|
|
buildInputs = with llvmPackages; [ clang-unwrapped llvm rapidjson ];
|
|
|
|
cmakeFlags = [ "-DSYSTEM_CLANG=ON" ];
|
|
|
|
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;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.mic92 ];
|
|
};
|
|
}
|