unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: aecepoglu <aecepoglu@fastmail.fm>
To: 46192@debbugs.gnu.org
Subject: [bug#46192] [PATCH 21/21] gnu: Add kak-lsp.
Date: Thu, 4 Feb 2021 14:39:12 +0300	[thread overview]
Message-ID: <20210204113912.iisy3tjabgloc2vg@minitower> (raw)
In-Reply-To: <20210130141347.olmrgflwxkhi2qrw@minitower>

* gnu/packages/crates-io.scm (kak-lsp): New variable.
---
 gnu/packages/text-editors.scm | 40 +++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index 052dfa1236..34206b419c 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -204,6 +204,46 @@ competitive (as in keystroke count) with Vim.")
     (home-page "https://kakoune.org/")
     (license license:unlicense)))
 
+(define-public kak-lsp
+  (package
+   (name "kak-lsp")
+   (version "9.0.0")
+   (source (origin
+            (method git-fetch)
+            (uri (git-reference
+                  (url "https://github.com/kak-lsp/kak-lsp")
+                  (commit (string-append "v" version))))
+            (file-name (git-file-name name version))
+            (sha256 "1wfv2fy5ga6kc51zka3pak0hq97csm2l11bz74w3n1hrf5q9nnf8")))
+   (build-system cargo-build-system)
+   (arguments `(#:cargo-inputs
+                (("rust-crossbeam-channel" ,rust-crossbeam-channel-0.4)
+                 ("rust-clap" ,rust-clap-2)
+                 ("rust-daemonize" ,rust-daemonize-0.4)
+                 ("rust-dirs" ,rust-dirs-2.0)
+                 ("rust-enum_primitive" ,rust-enum-primitive-0.1)
+                 ("rust-glob" ,rust-glob-0.3)
+                 ("rust-itertools" ,rust-itertools-0.9)
+                 ("rust-lsp-types" ,rust-lsp-types-0.80)
+                 ("rust-jsonrpc-core" ,rust-jsonrpc-core-14)
+                 ("rust-libc" ,rust-libc-0.2)
+                 ("rust-rand" ,rust-rand-0.7)
+                 ("rust-regex" ,rust-regex-1)
+                 ("rust-ropey" ,rust-ropey-1)
+                 ("rust-serde" ,rust-serde-1)
+                 ("rust-serde_derive" ,rust-serde-derive-1)
+                 ("rust-serde_json" ,rust-serde-json-1)
+                 ("rust-slog" ,rust-slog-2)
+                 ("rust-slog-scope" ,rust-slog-scope-4)
+                 ("rust-sloggers" ,rust-sloggers-1)
+                 ("rust-toml" ,rust-toml-0.5)
+                 ("rust-url" ,rust-url-2)
+                 ("rust-whoami" ,rust-whoami-0.8))))
+   (home-page "https://github.com/kak-lsp/kak-lsp")
+   (synopsis "Language Server Protocol (LSP) client for Kakoune")
+   (description "kak-lsp is a Language Server Protocol client for Kakoune implemented in Rust.")
+   (license license:unlicense)))
+
 (define-public joe
   (package
     (name "joe")
-- 
2.30.0





  parent reply	other threads:[~2021-02-04 11:37 UTC|newest]

Thread overview: 84+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-30 14:13 [bug#46192] [PATCH 01/22] gnu: Add rust-boxfnonce-0.1 aecepoglu
2021-01-30 14:26 ` [bug#46192] [PATCH 02/22] gnu: Add rust-daemonize-0.4 aecepoglu
2021-01-30 14:28 ` [bug#46192] [PATCH 03/22] gnu: Add rust-jsonrpc-core-14 aecepoglu
2021-01-30 14:29 ` [bug#46192] [PATCH 04/22] gnu: Add rust-enum-primitive-0.1 aecepoglu
2021-01-30 14:29 ` [bug#46192] [PATCH 05/22] gnu: Add rust-ropey-1 aecepoglu
2021-01-30 14:29 ` [bug#46192] [PATCH 06/22] gnu: Add rust-serde-repl-0.1 aecepoglu
2021-01-30 14:30 ` [bug#46192] [PATCH 07/22] gnu: Add rust-lsp-types-0.73 aecepoglu
2021-01-30 14:30 ` [bug#46192] [PATCH 08/22] gnu: Add rust-automod-0.1 aecepoglu
2021-01-30 17:46   ` Nicolas Goaziou
2021-01-30 14:30 ` [bug#46192] [PATCH 09/22] gnu: Add rust-rmp-0.8 aecepoglu
2021-01-30 14:32 ` [bug#46192] [PATCH 10/22] gnu: Add rust-rmp-serde-0.13 aecepoglu
2021-01-30 14:32 ` [bug#46192] [PATCH 11/22] gnu: Add rust-serdeconv-0.3 aecepoglu
2021-01-30 14:33 ` [bug#46192] [PATCH 12/22] gnu: Add rust-trackable-derive-0.1 aecepoglu
2021-01-30 14:33 ` [bug#46192] [PATCH 13/22] gnu: Add rust-trackable-0.2 aecepoglu
2021-01-30 14:33 ` [bug#46192] [PATCH 14/22] gnu: Add rust-slog-term-2 aecepoglu
2021-01-30 14:33 ` [bug#46192] [PATCH 15/22] gnu: Add rust-crossbeam-0.2 aecepoglu
2021-01-30 17:49   ` Nicolas Goaziou
2021-01-30 14:33 ` [bug#46192] [PATCH 16/22] gnu: Add rust-slog-stdlog-3 aecepoglu
2021-01-30 14:33 ` [bug#46192] [PATCH 17/22] gnu: Add rust-slog-scope-4 aecepoglu
2021-01-30 14:33 ` [bug#46192] [PATCH 18/22] gnu: Add rust-slog-kvfilter-0.7 aecepoglu
2021-01-30 14:33 ` [bug#46192] [PATCH 19/22] gnu: Add rust-slog-async-2 aecepoglu
2021-01-30 14:34 ` [bug#46192] [PATCH 20/22] gnu: Add rust-sloggers-0.3 aecepoglu
2021-01-30 14:34 ` [bug#46192] [PATCH 21/22] gnu: Add rust-whoami-0.8 aecepoglu
2021-01-30 14:34 ` [bug#46192] [PATCH 22/22] gnu: Add kak-lsp aecepoglu
2021-01-30 17:51 ` [bug#46192] [PATCH 01/22] gnu: Add rust-boxfnonce-0.1 Nicolas Goaziou
2021-01-30 22:42 ` aecepoglu
2021-01-30 22:42 ` [bug#46192] [PATCH 02/22] gnu: Add rust-daemonize-0.4 aecepoglu
2021-01-30 22:42 ` [bug#46192] [PATCH 03/22] gnu: Add rust-jsonrpc-core-14 aecepoglu
2021-01-30 22:42 ` [bug#46192] [PATCH 04/22] gnu: Add rust-enum-primitive-0.1 aecepoglu
2021-01-30 22:43 ` [bug#46192] [PATCH 05/22] gnu: Add rust-ropey-1 aecepoglu
2021-01-30 22:43 ` [bug#46192] [PATCH 06/22] gnu: Add rust-serde-repl-0.1 aecepoglu
2021-01-30 22:43 ` [bug#46192] [PATCH 07/22] gnu: Add rust-lsp-types-0.73 aecepoglu
2021-01-30 22:43 ` [bug#46192] [PATCH 08/22] gnu: Add rust-automod-0.1 aecepoglu
2021-01-30 22:44 ` [bug#46192] [PATCH 09/22] gnu: Add rust-rmp-0.8 aecepoglu
2021-01-30 22:44 ` [bug#46192] [PATCH 10/22] gnu: Add rust-rmp-serde-0.13 aecepoglu
2021-01-30 22:44 ` [bug#46192] [PATCH 11/22] gnu: Add rust-serdeconv-0.3 aecepoglu
2021-01-30 22:44 ` [bug#46192] [PATCH 12/22] gnu: Add rust-trackable-derive-0.1 aecepoglu
2021-01-30 22:44 ` [bug#46192] [PATCH 13/22] gnu: Add rust-trackable-0.2 aecepoglu
2021-01-30 22:44 ` [bug#46192] [PATCH 14/22] gnu: Add rust-slog-term-2 aecepoglu
2021-01-30 22:44 ` [bug#46192] [PATCH 15/22] gnu: Add rust-crossbeam-0.2 aecepoglu
2021-01-30 22:44 ` [bug#46192] [PATCH 16/22] gnu: Add rust-slog-stdlog-3 aecepoglu
2021-01-30 22:44 ` [bug#46192] [PATCH 17/22] gnu: Add rust-slog-scope-4 aecepoglu
2021-01-30 22:44 ` [bug#46192] [PATCH 18/22] gnu: Add rust-slog-kvfilter-0.7 aecepoglu
2021-01-30 22:44 ` [bug#46192] [PATCH 19/22] gnu: Add rust-slog-async-2 aecepoglu
2021-01-30 22:45 ` [bug#46192] [PATCH 20/22] gnu: Add rust-sloggers-0.3 aecepoglu
2021-01-30 22:45 ` [bug#46192] [PATCH 21/22] gnu: Add rust-whoami-0.8 aecepoglu
2021-01-30 22:45 ` [bug#46192] [PATCH 22/22] gnu: Add kak-lsp aecepoglu
2021-02-03 11:44 ` [bug#46192] [PATCH 03/22] gnu: Add rust-jsonrpc-core-14 aecepoglu
2021-02-03 11:44 ` [bug#46192] [PATCH 07/22] gnu: Add rust-lsp-types-0.73 aecepoglu
2021-02-03 11:47 ` [bug#46192] [PATCH 10/22] gnu: Add rust-rmp-serde-0.13 aecepoglu
2021-02-03 11:47 ` [bug#46192] [PATCH 05/22] gnu: Add rust-ropey-1 aecepoglu
2021-02-03 11:48 ` [bug#46192] [PATCH 11/22] gnu: Add rust-serdeconv-0.3 aecepoglu
2021-02-03 11:48 ` [bug#46192] [PATCH 19/22] gnu: Add rust-slog-async-2 aecepoglu
2021-02-03 11:49 ` [bug#46192] [PATCH 17/22] gnu: Add rust-slog-scope-4 aecepoglu
2021-02-03 11:50 ` [bug#46192] [PATCH 16/22] gnu: Add rust-slog-stdlog-3 aecepoglu
2021-02-03 11:50 ` [bug#46192] [PATCH 14/22] gnu: Add rust-slog-term-2 aecepoglu
2021-02-03 11:52 ` [bug#46192] [PATCH 20/22] gnu: Add rust-sloggers-0.3 aecepoglu
2021-02-03 11:54 ` [bug#46192] [PATCH 13/22] gnu: Add rust-trackable-0.2 aecepoglu
2021-02-03 11:55 ` [bug#46192] [PATCH 12/22] gnu: Add rust-trackable-derive-0.1 aecepoglu
2021-02-03 11:56 ` [bug#46192] [PATCH 21/22] gnu: Add rust-whoami-0.8 aecepoglu
2021-02-03 12:10 ` [bug#46192] [PATCH 23/22] gnu: Add rust-adaptive-barrier-0.1 aecepoglu
2021-02-03 12:10 ` [bug#46192] [PATCH 24/22] gnu: Add rust-arc-swap-1 aecepoglu
2021-02-04 11:35 ` [bug#46192] [PATCH 01/21] gnu: Add rust-boxfnonce-0.1 aecepoglu
2021-02-04 11:35 ` [bug#46192] [PATCH 02/21] gnu: Add rust-daemonize-0.4 aecepoglu
2021-02-04 11:37 ` [bug#46192] [PATCH 03/21] gnu: Add rust-enum-primitive-0.1 aecepoglu
2021-02-04 11:37 ` [bug#46192] [PATCH 04/21] gnu: Add rust-jsonrpc-core-14 aecepoglu
2021-02-04 11:37 ` [bug#46192] [PATCH 05/21] gnu: Add rust-serde-repr-0.1 aecepoglu
2021-02-04 11:37 ` [bug#46192] [PATCH 06/21] gnu: Add rust-lsp-types-0.80 aecepoglu
2021-02-04 11:38 ` [bug#46192] [PATCH 07/21] gnu: Add rust-ropey-1 aecepoglu
2021-02-04 11:38 ` [bug#46192] [PATCH 08/21] gnu: Add rust-slog-scope-4 aecepoglu
2021-02-04 11:38 ` [bug#46192] [PATCH 09/21] gnu: Add rust-whoami-0.8 aecepoglu
2021-02-04 11:38 ` [bug#46192] [PATCH 10/21] gnu: Add rust-adaptive-barrier-0.1 aecepoglu
2021-02-04 11:38 ` [bug#46192] [PATCH 11/21] gnu: Add rust-slog-async-2 aecepoglu
2021-02-04 11:38 ` [bug#46192] [PATCH 12/21] gnu: Add rust-slog-term-2 aecepoglu
2021-02-04 11:38 ` [bug#46192] [PATCH 13/21] gnu: Add rust-slog-kvfilter-0.7 aecepoglu
2021-02-04 11:38 ` [bug#46192] [PATCH 14/21] gnu: Add rust-arc-swap-1 aecepoglu
2021-02-04 11:38 ` [bug#46192] [PATCH 15/21] gnu: Add rust-slog-stdlog-4 aecepoglu
2021-02-04 11:38 ` [bug#46192] [PATCH 16/21] gnu: Add rust-trackable-derive-1 aecepoglu
2021-02-04 11:38 ` [bug#46192] [PATCH 17/21] gnu: Add rust-trackable-1 aecepoglu
2021-02-04 11:38 ` [bug#46192] [PATCH 18/21] gnu: Add rust-rmp-0.8 aecepoglu
2021-02-04 11:39 ` [bug#46192] [PATCH 19/21] gnu: Add rust-rmp-serde-0.14 aecepoglu
2021-02-04 11:39 ` [bug#46192] [PATCH 20/21] gnu: Add rust-serdeconv-0.4 aecepoglu
2021-02-04 11:39 ` aecepoglu [this message]
2021-02-04 15:12   ` bug#46192: [PATCH 21/21] gnu: Add kak-lsp Nicolas Goaziou

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210204113912.iisy3tjabgloc2vg@minitower \
    --to=aecepoglu@fastmail.fm \
    --cc=46192@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).