guix_mirror_bot pushed a commit to branch master
in repository guix.
commit e0f680dfe536d8a4a6b772150227767ad083b586
Author: Carlos Durán Domínguez <[email protected]>
AuthorDate: Mon Feb 23 23:38:26 2026 +0100
gnu: Add qtappinstancemanager.
* gnu/packages/qt.scm (qtappinstancemanager): New variable.
Change-Id: Ib78d405a2880278e865c42cdc75c7bfda7a84830
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/qt.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 953b9205a7..e7598103ec 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -147,6 +147,37 @@
#:use-module (ice-9 match)
#:use-module (srfi srfi-1))
+(define-public qtappinstancemanager
+ (package
+ (name "qtappinstancemanager")
+ (version "1.3.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/oclero/qtappinstancemanager")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "12vfhjvxlnnm3wszv5qs7c1925gywgm00583ppnx0ab3k8iswqwd"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list
+ #:tests? #f)) ;no tests
+ (inputs (list qtbase))
+ (synopsis "Single application instance manager for Qt6")
+ (description
+ "QtAppInstanceManager is a tool to control how many instances of your Qt
+application are running at the same time, and to send messages between
+instances. It uses a local socket under the hood. You may then build upon this
+foundation any messaging system or protocol, such as JSON-RPC for
+instance (NB: not provided because out of the scope of this library).
+
+It is intended to be a replacement for QtSingleApplication, the deprecated Qt4
+official project.")
+ (home-page "https://github.com/oclero/qtappinstancemanager")
+ (license license:expat)))
+
(define-public qcoro-qt5
(package
(name "qcoro-qt5")