Commit 67dc5978 authored by Jason Felice's avatar Jason Felice
Browse files

kak-lsp: fix build on Darwin

parent d26b6de2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ stdenv, lib, fetchFromGitHub, rustPlatform, Security, SystemConfiguration }:
{ stdenv, lib, fetchFromGitHub, rustPlatform, CoreServices, Security, SystemConfiguration }:

rustPlatform.buildRustPackage rec {
  pname = "kak-lsp";
@@ -13,7 +13,7 @@ rustPlatform.buildRustPackage rec {

  cargoSha256 = "sha256-g63Kfi4xJZO/+fq6eK2iB1dUGoSGWIIRaJr8BWO/txM=";

  buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
  buildInputs = lib.optionals stdenv.isDarwin [ CoreServices Security SystemConfiguration ];

  meta = with lib; {
    description = "Kakoune Language Server Protocol Client";
+1 −1
Original line number Diff line number Diff line
@@ -9734,7 +9734,7 @@ with pkgs;
  kaffeine = libsForQt5.callPackage ../applications/video/kaffeine { };
  kak-lsp = callPackage ../tools/misc/kak-lsp {
    inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
    inherit (darwin.apple_sdk.frameworks) CoreServices Security SystemConfiguration;
  };
  kakoune-cr = callPackage ../tools/misc/kakoune-cr { crystal = crystal_1_2; };