mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add signond-qt6.
* gnu/packages/qt.scm (signond-qt6): New variable. Change-Id: I5cc69028e64119cad4ffd4ae81e4fa1cfaa65a15
This commit is contained in:
parent
60d1279cd4
commit
a4786b43ee
1 changed files with 25 additions and 0 deletions
|
@ -5387,6 +5387,31 @@ (define-public signond
|
|||
authentication on behalf of its clients.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
;; fork for support qt6
|
||||
(define-public signond-qt6
|
||||
(let ((commit "c8ad98249af541514ff7a81634d3295e712f1a39")
|
||||
(revision "0"))
|
||||
(package
|
||||
(inherit signond)
|
||||
(name "signond-qt6")
|
||||
(version (git-version "8.61" revision commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.com/nicolasfella/signond")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"13cgdf6hhi2z3c8sax79dwi7450n8h228kpyl2w5lx0xglb2savq"))))
|
||||
(native-inputs (modify-inputs (package-native-inputs signond)
|
||||
(delete "qtbase")
|
||||
(replace "qttools" qttools)))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments signond)
|
||||
((#:qtbase _ #f)
|
||||
qtbase))))))
|
||||
|
||||
(define-public signon-plugin-oauth2
|
||||
(package
|
||||
(name "signon-plugin-oauth2")
|
||||
|
|
Loading…
Reference in a new issue