guix-commits
[Top][All Lists]
Advanced

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

245/465: gnu: Add print-manager.


From: guix-commits
Subject: 245/465: gnu: Add print-manager.
Date: Tue, 16 Jul 2024 11:03:30 -0400 (EDT)

z572 pushed a commit to branch kde-team
in repository guix.

commit 867609af79ddf832e08272c3688e5e03d6dc29dd
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Sat Jul 6 19:31:25 2024 +0800

    gnu: Add print-manager.
    
    * gnu/packages/kde-plasma.scm (print-manager): New variable.
    
    Change-Id: I251b2f2b99781404a994b5d45502f89b19b16eb4
---
 gnu/packages/kde-plasma.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
index 20b073706f..78a178d321 100644
--- a/gnu/packages/kde-plasma.scm
+++ b/gnu/packages/kde-plasma.scm
@@ -40,6 +40,7 @@
   #:use-module (gnu packages bash)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages crypto)
+  #:use-module (gnu packages cups)
   #:use-module (gnu packages display-managers)
   #:use-module (gnu packages file-systems)
   #:use-module (gnu packages firmware)
@@ -2850,6 +2851,43 @@ hardware management, and a high degree of 
customizability.")
      "This package provides wallpapers for the KDE desktop.")
     (license license:lgpl3+)))
 
+(define-public print-manager
+  (package
+    (name "print-manager")
+    (version "6.1.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/plasma/" version
+                           "/print-manager-" version ".tar.xz"))
+       (sha256
+        (base32 "19gmqd48wjg9q8h57xdsa1d4nhvbp3h169v519pgw06lrrhia5hl"))))
+    (build-system qt-build-system)
+    (native-inputs
+     (list extra-cmake-modules))
+    (inputs
+     (list cups
+           kcmutils
+           kconfig
+           kconfigwidgets
+           kcoreaddons
+           kdbusaddons
+           kiconthemes
+           kirigami
+           ki18n
+           kio
+           knotifications
+           kwidgetsaddons
+           kwindowsystem
+           libplasma
+           qtdeclarative))
+    (arguments (list #:qtbase qtbase))
+    (home-page "https://invent.kde.org/plasma/print-manager";)
+    (synopsis "Manage print jobs and printers")
+    (description
+     "This package provides printing management for KDE.")
+    (license license:gpl2+)))
+
 (define-public polkit-kde-agent
   (package
     (name "polkit-kde-agent")



reply via email to

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