This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new d7dac3985c gnu: Add hare-lsp.
d7dac3985c is described below

commit d7dac3985c8add0336c3d66ce004330838d35fb9
Author: jgart <[email protected]>
AuthorDate: Wed Dec 17 20:57:21 2025 -0600

    gnu: Add hare-lsp.
    
    * gnu/packages/hare-apps.scm (hare-lsp): New variable.
    
    Change-Id: Ic66fbcbc74dc241fae819ca0a3fd61b6c3c7fc15
---
 gnu/packages/hare-apps.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/hare-apps.scm b/gnu/packages/hare-apps.scm
index d505a9492b..ad8c58f492 100644
--- a/gnu/packages/hare-apps.scm
+++ b/gnu/packages/hare-apps.scm
@@ -61,6 +61,28 @@ The state will transition following every accepted 
transition.  If there is no
 more available transition, the state goes back to the initial position.")
     (license license:agpl3+)))
 
+(define-public hare-lsp
+  (package
+    (name "hare-lsp")
+    (version "0.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://git.sr.ht/~whynothugo/hare-lsp";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1h763ynv1zh2ili26bkd9anmv8srva63rwpv2avnmimia1bvsx81"))))
+    (build-system hare-build-system)
+    (inputs (list hare-json))
+    (supported-systems %hare-supported-systems)
+    (home-page "https://git.sr.ht/~whynothugo/hare-lsp/";)
+    (synopsis "Language server implementation for Hare")
+    (description "This package provides a language server implementation for
+Hare.")
+    (license license:isc)))
+
 (define-public sxmobar
   (package
     (name "sxmobar")

Reply via email to