lol

Merge pull request #142048 from tomhoule/upgrade/kak-lsp

kak-lsp: 11.0.0 -> 11.0.1

authored by

figsoda and committed by
GitHub
0347bd40 1d5f3542

+6 -6
+5 -5
pkgs/tools/misc/kak-lsp/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, rustPlatform, Security }: 1 + { stdenv, lib, fetchFromGitHub, rustPlatform, Security, SystemConfiguration }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "kak-lsp"; 5 - version = "11.0.0"; 5 + version = "11.0.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = pname; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "198y2k3vi8dh9kfqgl7vpgkxvjlfvryi9c8hmb43m0lpwsja0010"; 11 + sha256 = "sha256-rSUXMQF4V+ToYw3RIfEZd2AfAiHoRPDC3DZBAg2zeKo="; 12 12 }; 13 13 14 - cargoSha256 = "0sv1a2k5rcf4hl1w50mh041r3w3nir6avyl6xa3rlcc7cy19q21y"; 14 + cargoSha256 = "sha256-vcq+WVHmGFrZFLzNWyHU7qN6cDSKP9pAzxZNs2+8jR8="; 15 15 16 - buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 16 + buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; 17 17 18 18 meta = with lib; { 19 19 description = "Kakoune Language Server Protocol Client";
+1 -1
pkgs/top-level/all-packages.nix
··· 6624 6624 kakouneUtils = callPackage ../applications/editors/kakoune/plugins/kakoune-utils.nix { }; 6625 6625 6626 6626 kak-lsp = callPackage ../tools/misc/kak-lsp { 6627 - inherit (darwin.apple_sdk.frameworks) Security; 6627 + inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 6628 6628 }; 6629 6629 6630 6630 kbdd = callPackage ../applications/window-managers/kbdd { };