kakoune-lsp: nixfmt

This commit is contained in:
Philip Taron 2024-08-12 13:58:48 -07:00
parent 8d9ed73e65
commit d176239d50
No known key found for this signature in database

View File

@ -1,8 +1,13 @@
{ lib
, rustPlatform
, fetchFromGitHub
, substituteAll, perl
, stdenv, CoreServices, Security, SystemConfiguration
{
lib,
rustPlatform,
fetchFromGitHub,
substituteAll,
perl,
stdenv,
CoreServices,
Security,
SystemConfiguration,
}:
rustPlatform.buildRustPackage rec {
@ -25,13 +30,28 @@ rustPlatform.buildRustPackage rec {
cargoHash = "sha256-XnhYODMzqInwbgM8wveY048sljZ8OKw4hLYJG5h8Twc=";
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices Security SystemConfiguration ];
buildInputs = lib.optionals stdenv.isDarwin [
CoreServices
Security
SystemConfiguration
];
meta = {
description = "Kakoune Language Server Protocol Client";
homepage = "https://github.com/kakoune-lsp/kakoune-lsp";
license = with lib.licenses; [ unlicense /* or */ mit ];
maintainers = with lib.maintainers; [ philiptaron spacekookie poweredbypie ];
# See https://github.com/kakoune-lsp/kakoune-lsp/commit/55dfc83409b9b7d3556bacda8ef8b71fc33b58cd
license = with lib.licenses; [
unlicense
mit
];
maintainers = with lib.maintainers; [
philiptaron
spacekookie
poweredbypie
];
mainProgram = "kak-lsp";
};
}