mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
Merge pull request #261866 from eraserhd/kak-lsp-CoreServices-fix
kak-lsp: fix build on Darwin
This commit is contained in:
commit
cb611c70ce
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, rustPlatform, Security, SystemConfiguration }:
|
{ stdenv, lib, fetchFromGitHub, rustPlatform, CoreServices, Security, SystemConfiguration }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "kak-lsp";
|
pname = "kak-lsp";
|
||||||
@ -13,7 +13,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
|
|
||||||
cargoSha256 = "sha256-g63Kfi4xJZO/+fq6eK2iB1dUGoSGWIIRaJr8BWO/txM=";
|
cargoSha256 = "sha256-g63Kfi4xJZO/+fq6eK2iB1dUGoSGWIIRaJr8BWO/txM=";
|
||||||
|
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
|
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices Security SystemConfiguration ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Kakoune Language Server Protocol Client";
|
description = "Kakoune Language Server Protocol Client";
|
||||||
|
@ -9734,7 +9734,7 @@ with pkgs;
|
|||||||
kaffeine = libsForQt5.callPackage ../applications/video/kaffeine { };
|
kaffeine = libsForQt5.callPackage ../applications/video/kaffeine { };
|
||||||
|
|
||||||
kak-lsp = callPackage ../tools/misc/kak-lsp {
|
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; };
|
kakoune-cr = callPackage ../tools/misc/kakoune-cr { crystal = crystal_1_2; };
|
||||||
|
Loading…
Reference in New Issue
Block a user