From 7c0860a147d3b72f718ac3c06a202cd8181094d4 Mon Sep 17 00:00:00 2001 From: Brendan Tildesley Date: Sat, 5 Mar 2022 11:46:47 +1100 Subject: [PATCH 2/2] . libaccounts-qt --- gnu/packages/qt.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 6d2e54783a..eebede4176 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -3182,3 +3182,33 @@ (define-public libaccounts-glib handles the authentication process of an account and securely stores the credentials and service-specific settings.") (license license:lgpl2.1+))) + +(define-public libaccounts-qt + (package + (name "libaccounts-qt") + (version "1.16") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/accounts-sso/libaccounts-qt") + (commit (string-append "VERSION_" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1vmpjvysm0ld8dqnx8msa15hlhrkny02cqycsh4k2azrnijg0xjz")))) + (build-system gnu-build-system) + (native-inputs (list pkg-config qtbase-5 strace qttools)) + (inputs (list doxygen + libaccounts-glib + glib)) + (arguments + (list + #:tests? #f + #:phases + #~(modify-phases %standard-phases + (replace 'configure + (lambda _ (invoke "qmake")))))) + (home-page "https://accounts-sso.gitlab.io/") + (synopsis "Qt5 bindings for libaccounts-glib") + (description (package-description libaccounts-glib)) + (license #f))) -- 2.34.0