nixpkgs/pkgs/tools/misc/kak-lsp/default.nix

26 lines
731 B
Nix
Raw Normal View History

2019-06-27 19:42:41 +02:00
{ stdenv, lib, darwin, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "kak-lsp";
2019-10-15 07:08:47 +02:00
version = "7.0.0";
2019-06-27 19:42:41 +02:00
src = fetchFromGitHub {
owner = "ul";
repo = pname;
rev = "v${version}";
2019-10-15 07:08:47 +02:00
sha256 = "1b9v417g0z9q1sqgnms5vy740xggg4fcz0fdwbc4hfvfj6jkyaad";
2019-06-27 19:42:41 +02:00
};
cargoSha256 = "1cmms8kvh24sjb0w77i1bwl09wkx3x65p49pkg1j0lipwic3apm3";
2019-06-27 19:42:41 +02:00
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";
2019-06-27 19:42:41 +02:00
license = with licenses; [ unlicense /* or */ mit ];
maintainers = [ maintainers.spacekookie ];
platforms = platforms.all;
};
}