Skip to content

Commit

Permalink
Merge pull request NixOS#281225 from kira-bruneau/cmake-language-server
Browse files Browse the repository at this point in the history
cmake-language-server: 0.1.8 -> 0.1.9
  • Loading branch information
fpletz authored Jan 16, 2024
2 parents e6b80fe + f354301 commit 3361ace
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pkgs/development/tools/misc/cmake-language-server/default.nix
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
{ lib
, buildPythonApplication
, pythonOlder
, fetchFromGitHub
, pdm-backend
, cmake-format
, pygls
, cmake
, pdm-backend
, pytest-datadir
, pytestCheckHook
, pythonOlder
}:

buildPythonApplication rec {
pname = "cmake-language-server";
version = "0.1.8";
version = "0.1.9";
format = "pyproject";

disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";

src = fetchFromGitHub {
owner = "regen100";
repo = "cmake-language-server";
rev = "refs/tags/v${version}";
hash = "sha256-7AlF+FqhZR+6lLsR1dxAGHd/GU+mB3ojYLDXVm7Il4M=";
hash = "sha256-8ypl0YA6ep8/jBL3tsutSgCW13NZTZzaNafaOamcT08=";
};

patches = [
Expand Down Expand Up @@ -64,6 +64,7 @@ buildPythonApplication rec {
meta = with lib; {
description = "CMake LSP Implementation";
homepage = "https://github.com/regen100/cmake-language-server";
changelog = "https://github.com/regen100/cmake-language-server/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ kira-bruneau ];
mainProgram = "cmake-language-server";
Expand Down

0 comments on commit 3361ace

Please sign in to comment.