1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add single-application.

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

Change-Id: Iaa3111270ea98da6ff223f119277a45bd2eb6f7c
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Sergey Trofimov 2025-06-27 11:03:16 +02:00 committed by Sharlatan Hellseher
parent 992144b88b
commit ef55651851
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -3960,6 +3960,27 @@ instances and can send data to the primary instance from secondary
instances.")
(license license:expat))))
(define-public single-application
(package/inherit single-application-qt5
(name "single-application")
(version "3.5.2")
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/itay-grudev/SingleApplication")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"069aww3aww6968hmipzfbj57a5vw6jxj1mr20nsb1yh98n5c01rv"))))
(arguments
(substitute-keyword-arguments (package-arguments single-application-qt5)
((#:configure-flags flags)
#~(cons "-DQT_DEFAULT_MAJOR_VERSION=6" #$flags))))
(inputs (list qtbase))))
(define-public pyotherside
(package
(name "pyotherside")