guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

78/143: gnu: Add packagekit-qt5.


From: guix-commits
Subject: 78/143: gnu: Add packagekit-qt5.
Date: Mon, 21 Nov 2022 16:10:48 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit fc85a45aecd64556e1f3ec82e66de54665684933
Author: Petr Hodina <phodina@protonmail.com>
AuthorDate: Mon Sep 12 05:25:02 2022 +0200

    gnu: Add packagekit-qt5.
    
    * gnu/packages/qt.scm (packagekit-qt5): New variable.
    
    Signed-off-by: Marius Bakke <marius@gnu.org>
---
 gnu/packages/qt.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index e6afbf4ac4..f37392f199 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -4374,6 +4374,30 @@ credentials and service-specific settings.")
 GLib applications.")
     (license license:lgpl2.1+)))
 
+(define-public packagekit-qt5
+  (package
+    (name "packagekit-qt5")
+    (version "1.0.2")
+    (source (origin
+              (method git-fetch)
+                         (uri (git-reference
+                         (url "https://github.com/hughsie/PackageKit-Qt";)
+                         (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1d20r503msw1vix3nb6a8bmdqld7fj8k9jk33bkqsc610a2zsms6"))))
+    (build-system cmake-build-system)
+    (arguments '(#:tests? #f))          ;no test suite
+    (native-inputs (list pkg-config))
+    (inputs (list packagekit qtbase-5))
+    (home-page "https://www.freedesktop.org/software/PackageKit/pk-intro.html";)
+    (synopsis "Qt5 bindings for PackageKit")
+    (description "Provides Qt5 bindings to PackageKit which is a DBUS
+abstraction layer that allows the session user to manage packages in
+a secure way.")
+    (license license:lgpl2.1+)))
+
 (define-public signond
   (package
     (name "signond")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]