unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Maxim Cournoyer <maxim.cournoyer@gmail.com>
To: 65280@debbugs.gnu.org
Cc: "Maxim Cournoyer" <maxim.cournoyer@gmail.com>,
	"Andreas Enge" <andreas@enge.fr>,
	"Maxim Cournoyer" <maxim.cournoyer@gmail.com>,
	宋文武 <iyzsong@envs.net>
Subject: [bug#65280] [PATCH 11/26] gnu: Add qtlanguageserver.
Date: Mon, 14 Aug 2023 00:29:21 -0400	[thread overview]
Message-ID: <004f1f87db1d395e4adc83782f9ce19c384faf94.1691987375.git.maxim.cournoyer@gmail.com> (raw)
In-Reply-To: <cover.1691987375.git.maxim.cournoyer@gmail.com>

* gnu/packages/qt.scm (qtlanguageserver): New variable.
---

 gnu/packages/qt.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index d9ca408721..d66ecda169 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -1940,6 +1940,30 @@ (define-public qtwebview
 application without necessarily including a full web browser stack by using
 native APIs where it makes sense.")))
 
+(define-public qtlanguageserver
+  (package
+    (name "qtlanguageserver")
+    (version "6.5.2")
+    (source (origin
+              (method url-fetch)
+              (uri (qt-url name version))
+              (sha256
+               (base32
+                "196iicwpqca2ydpca41qs6aqxxq8ycknw6lm2v00h1w3m86frdbk"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list #:phases #~(modify-phases %standard-phases
+                        (add-after 'install 'delete-installed-tests
+                          (lambda _
+                            (delete-file-recursively
+                             (string-append #$output "/tests")))))))
+    (inputs (list qtbase))
+    (home-page (package-home-page qtbase))
+    (synopsis "Implementation of the Language Server Protocol for Qt")
+    (description "This package provides an implementation of the Language
+Server Protocol (LSP) for Qt.")
+    (license (package-license qtbase))))
+
 (define-public qtlocation
   (package
     (inherit qtsvg-5)
-- 
2.41.0





  parent reply	other threads:[~2023-08-14  4:35 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <cover.1691987375.git.maxim.cournoyer@gmail.com>
2023-08-14  4:29 ` [bug#65280] [PATCH 01/26] gnu: qt: Revert to use individual versions instead of %qt5-version Maxim Cournoyer
2023-08-17 10:51   ` Andreas Enge
2023-08-17 13:45     ` Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 02/26] gnu: qtdeclarative: Disable QML cache to avoid stale cache issues Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 03/26] etc: Add Qt manifests for Qt maintenance Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 04/26] gnu: qtbase: Update to 6.5.2 Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 05/26] gnu: qtbase: Enable zstd support Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 06/26] gnu: qt5compat: Update to 6.5.2 Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 07/26] gnu: qtsvg: " Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 08/26] gnu: qtimageformats: Rename variable to qtimageformats-5 Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 09/26] gnu: qtimageformats-5: Fix indentation Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 10/26] gnu: Add qtimageformats Maxim Cournoyer
2023-08-14  4:29 ` Maxim Cournoyer [this message]
2023-08-14  4:29 ` [bug#65280] [PATCH 12/26] gnu: qtdeclarative: Update to 6.5.2 Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 13/26] gnu: qtwebsockets: " Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 14/26] gnu: qtshadertools: " Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 15/26] gnu: qtmultimedia: " Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 16/26] gnu: qtwayland: " Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 17/26] gnu: qtwebchannel: " Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 18/26] gnu: qtlottie: " Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 19/26] gnu: qttools: " Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 20/26] gnu: qttranslations: " Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 21/26] gnu: qtpositioning: " Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 22/26] gnu: qtnetworkauth: " Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 23/26] gnu: qtremoteobjects: " Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 24/26] gnu: qtwebengine: " Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 25/26] gnu: Remove qtquickcontrols2 Maxim Cournoyer
2023-08-14  4:29 ` [bug#65280] [PATCH 26/26] gnu: qt-creator: Update to 11.0.1 Maxim Cournoyer

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=004f1f87db1d395e4adc83782f9ce19c384faf94.1691987375.git.maxim.cournoyer@gmail.com \
    --to=maxim.cournoyer@gmail.com \
    --cc=65280@debbugs.gnu.org \
    --cc=andreas@enge.fr \
    --cc=iyzsong@envs.net \
    /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).