kak-lsp: 8.0.0 -> 9.0.0

While here, also add to kakounePlugins
This commit is contained in:
Ashish SHUKLA 2021-02-19 20:01:43 +05:30
parent 6b1057b452
commit 81b7b0be4f
No known key found for this signature in database
GPG key ID: C746CFA9E74FA4B0
2 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
{ pkgs, parinfer-rust, rep }:
{ pkgs, parinfer-rust, rep, kak-lsp }:
{
inherit parinfer-rust rep;
inherit parinfer-rust rep kak-lsp;
case-kak = pkgs.callPackage ./case.kak.nix { };
kak-ansi = pkgs.callPackage ./kak-ansi.nix { };

View file

@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "kak-lsp";
version = "8.0.0";
version = "9.0.0";
src = fetchFromGitHub {
owner = "ul";
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "0nka51szivwhlfkimjiyzj67nxh75m784c28ass6ihlfax631w9m";
sha256 = "1wfv2fy5ga6kc51zka3pak0hq97csm2l11bz74w3n1hrf5q9nnf8";
};
cargoSha256 = "174qy50m9487vv151vm8q6sby79dq3gbqjbz6h4326jwsc9wwi8c";
cargoSha256 = "0g67s6n45rxvv1q5s7x5ajh5n16p68bhlsrsjp46qamrraz63d68";
buildInputs = lib.optional stdenv.isDarwin [ Security ];