4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ lib, stdenv, buildPythonApplication, fetchFromGitHub
|
|
, poetry, pygls, pyparsing
|
|
, cmake, pytest, pytest-datadir
|
|
, fetchpatch
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "cmake-language-server";
|
|
version = "0.1.2";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "regen100";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0vz7bjxkk0phjhz3h9kj6yr7wnk3g7lqmkqraa0kw12mzcfck837";
|
|
};
|
|
|
|
# can be removed after v0.1.2
|
|
patches = stdenv.lib.optional stdenv.isDarwin (fetchpatch {
|
|
url = "https://github.com/regen100/cmake-language-server/commit/0ec120f39127f25898ab110b43819e3e9becb8a3.patch";
|
|
sha256 = "1xbmarvsvzd61fnlap4qscnijli2rw2iqr7cyyvar2jd87z6sfp0";
|
|
});
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'pygls = "^0.8.1"' 'pygls = "^0.9.0"'
|
|
'';
|
|
|
|
nativeBuildInputs = [ poetry ];
|
|
propagatedBuildInputs = [ pygls pyparsing ];
|
|
|
|
checkInputs = [ cmake pytest pytest-datadir ];
|
|
dontUseCmakeConfigure = true;
|
|
checkPhase = "pytest";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/regen100/cmake-language-server";
|
|
description = "CMake LSP Implementation";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ metadark ];
|
|
};
|
|
}
|