diff options
| author | Andreas Enge <andreas@enge.fr> | 2026-02-23 18:04:29 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-23 18:04:31 +0100 |
| commit | 9bb4ecc44c7fd09e37f9d00f385338fd76836688 (patch) | |
| tree | ea8648f9c643e0ba0bb1b64e6b1f1930e211f39d /gnu | |
| parent | 502c83b8242f71672df7d21adbbda45460b54ba2 (diff) | |
gnu: Remove signond.
* gnu/packages/qt.scm (signond): Delete variable.
Fixes: guix/guix#5850
Change-Id: I8c511aec0f6fb18eddc75f4260640b7727ff84ff
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/qt.scm | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 4deb8c8128c..c178b75276a 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -6385,58 +6385,6 @@ a secure way.") abstraction layer that allows the session user to manage packages in a secure way."))) -(define-public signond - (package - (name "signond") - (version "8.61") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://gitlab.com/accounts-sso/signond") - (commit (string-append "VERSION_" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0k6saz5spys4a4p6ws0ayrjks2gqdqvz7zfmlhdpz5axha0gbqq4")))) - (build-system qt-build-system) - (native-inputs (list doxygen pkg-config qttools-5)) - (inputs (list dbus glib libaccounts-glib)) - (arguments - (list #:tests? #f ; Figure out how to run tests - #:modules '((guix build qt-build-system) - ((guix build gnu-build-system) #:prefix gnu:) - (guix build utils)) - #:phases - #~(modify-phases %standard-phases - (replace 'configure - (lambda _ - (substitute* "src/signond/signond.pro" - (("/etc/") - (string-append #$output "/etc/"))) - (substitute* - '("tests/extensions/extensions.pri" - "tests/signond-tests/mock-ac-plugin/plugin.pro" - "tests/signond-tests/identity-tool.pro" - "tests/signond-tests/mock-ac-plugin/identity-ac-helper.pro" - "tests/libsignon-qt-tests/libsignon-qt-tests.pro" - "tests/signond-tests/signond-tests.pri") - (("QMAKE_RPATHDIR = \\$\\$\\{QMAKE_LIBDIR\\}") - (string-append "QMAKE_RPATHDIR = " - #$output "/lib:" - #$output "/lib/signon"))) - (invoke "qmake" - (string-append "PREFIX=" #$output) - (string-append "LIBDIR=" #$output "/lib") - (string-append "QMAKE_LFLAGS_RPATH=-Wl,-rpath," - #$output "/lib -Wl,-rpath,")))) - (replace 'build (assoc-ref gnu:%standard-phases 'build)) - (replace 'install (assoc-ref gnu:%standard-phases 'install))))) - (home-page "https://accounts-sso.gitlab.io/signond/index.html") - (synopsis "Perform user authentication over D-Bus") - (description "This package provides a D-Bus service which performs user -authentication on behalf of its clients.") - (license license:lgpl2.1+))) - ;; fork for support qt6 (define-public signond-qt6 (let ((commit "c8ad98249af541514ff7a81634d3295e712f1a39") |
