blob: 74fdfb2c6e3070c4bae5da06868e1f9ada2584d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
{
lib,
rustPlatform,
fetchFromGitHub,
replaceVars,
perl,
stdenv,
CoreServices,
Security,
SystemConfiguration,
}:
rustPlatform.buildRustPackage rec {
pname = "kakoune-lsp";
version = "17.1.2";
src = fetchFromGitHub {
owner = "kakoune-lsp";
repo = "kakoune-lsp";
rev = "v${version}";
hash = "sha256-NZDp98Ne6z7DlJ2vZiqGzw5ukusOkEjb+eyvmxB+IKI=";
};
patches = [ (replaceVars ./Hardcode-perl.patch { inherit perl; }) ];
cargoHash = "sha256-QonOqdcdp1vbxzLnF46X0DLVay2Up1LvHZ/ZZ04LqlE=";
buildInputs = lib.optionals stdenv.isDarwin [
CoreServices
Security
SystemConfiguration
];
meta = {
description = "Kakoune Language Server Protocol Client";
homepage = "https://github.com/kakoune-lsp/kakoune-lsp";
# See https://github.com/kakoune-lsp/kakoune-lsp/commit/55dfc83409b9b7d3556bacda8ef8b71fc33b58cd
license = with lib.licenses; [
unlicense
mit
];
maintainers = with lib.maintainers; [
philiptaron
spacekookie
poweredbypie
];
mainProgram = "kak-lsp";
};
}
|