From c1fdc727f9c59d904f02bdad58a0fa8569c4bd6a Mon Sep 17 00:00:00 2001 From: Katharina Fey Date: Sat, 4 Sep 2021 12:50:41 +0200 Subject: [PATCH] kak-lsp: 10.0.0 -> 11.0.0 --- .../nixpkgs/unstable/pkgs/tools/misc/kak-lsp/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/infra/libkookie/nixpkgs/unstable/pkgs/tools/misc/kak-lsp/default.nix b/infra/libkookie/nixpkgs/unstable/pkgs/tools/misc/kak-lsp/default.nix index 86d85815374..bd955b8136e 100644 --- a/infra/libkookie/nixpkgs/unstable/pkgs/tools/misc/kak-lsp/default.nix +++ b/infra/libkookie/nixpkgs/unstable/pkgs/tools/misc/kak-lsp/default.nix @@ -2,22 +2,22 @@ rustPlatform.buildRustPackage rec { pname = "kak-lsp"; - version = "10.0.0"; + version = "11.0.0"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; - sha256 = "sha256-SmK4G9AoKGqKGbXucn5AO5DTOeVNq3gCBGvDTIJQgRU="; + sha256 = "198y2k3vi8dh9kfqgl7vpgkxvjlfvryi9c8hmb43m0lpwsja0010"; }; - cargoSha256 = "sha256-iY5xT8e/gRN/mBT9v5LhMcl9g1/SyrH/glPBP+toZ9o="; + cargoSha256 = "0sv1a2k5rcf4hl1w50mh041r3w3nir6avyl6xa3rlcc7cy19q21y"; buildInputs = lib.optional stdenv.isDarwin [ Security ]; meta = with lib; { description = "Kakoune Language Server Protocol Client"; - homepage = "https://github.com/ul/kak-lsp"; + homepage = "https://github.com/kak-lsp/kak-lsp"; license = with licenses; [ unlicense /* or */ mit ]; maintainers = [ maintainers.spacekookie ]; };