Unverified Commit 2b7e9712 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #237210 from wineee/neocmakelsp

neocmakelsp: init at 0.5.18
parents b3ab40b9 6387a932
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{ lib
, rustPlatform
, fetchFromGitHub
}:

rustPlatform.buildRustPackage rec {
  pname = "neocmakelsp";
  version = "0.5.18";

  src = fetchFromGitHub {
    owner = "Decodetalkers";
    repo = "neocmakelsp";
    rev = "v${version}";
    hash = "sha256-3Bv1tRskxQ4Fk+gEGCYRq8WtkBHYP2VjirtTZ3SWJlQ=";
  };

  cargoHash = "sha256-O8E5PmXYrNOB8fXFs5ar30c1X5flIQZ/lrRSl/3XH+o=";

  meta = with lib; {
    description = "A cmake lsp based on tower-lsp and treesitter";
    homepage = "https://github.com/Decodetalkers/neocmakelsp";
    license = licenses.mit;
    platforms = platforms.linux;
    maintainers = with maintainers; [ rewine ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -17757,6 +17757,8 @@ with pkgs;
  millet = callPackage ../development/tools/language-servers/millet { };
  neocmakelsp = callPackage ../development/tools/language-servers/neocmakelsp { };
  nil = callPackage ../development/tools/language-servers/nil { };
  nls = callPackage ../development/tools/language-servers/nls { };