1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

Merge pull request #64617 from spacekookie/kak-lsp

kak-lsp: init at 6.2.1
This commit is contained in:
worldofpeace 2019-07-23 03:18:48 -04:00 committed by GitHub
commit 837e696c39
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, lib, darwin, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "kak-lsp";
version = "6.2.1";
src = fetchFromGitHub {
owner = "ul";
repo = pname;
rev = "v${version}";
sha256 = "0bazbz1g5iqxlwybn5whidvavglvgdl9yp9qswgsk1jrjmcr5klx";
};
cargoSha256 = "0w0mnh8fnl8zi9n0fxzqaqbvmfagf3ay5v2na3laxb72jm76hrwa";
buildInputs = lib.optional stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
meta = with lib; {
description = "Kakoune Language Server Protocol Client";
homepage = https://github.com/ul/kak-lsp;
license = with licenses; [ unlicense /* or */ mit ];
maintainers = [ maintainers.spacekookie ];
platforms = platforms.all;
};
}

View file

@ -4005,6 +4005,8 @@ in
kakoune-unwrapped = callPackage ../applications/editors/kakoune { }; kakoune-unwrapped = callPackage ../applications/editors/kakoune { };
kakoune = wrapKakoune kakoune-unwrapped { }; kakoune = wrapKakoune kakoune-unwrapped { };
kak-lsp = callPackage ../tools/misc/kak-lsp { };
kbdd = callPackage ../applications/window-managers/kbdd { }; kbdd = callPackage ../applications/window-managers/kbdd { };
kdbplus = pkgsi686Linux.callPackage ../applications/misc/kdbplus { }; kdbplus = pkgsi686Linux.callPackage ../applications/misc/kdbplus { };