gnu: Add print-manager.

* gnu/packages/kde-plasma.scm (print-manager): New variable.

Change-Id: I251b2f2b99781404a994b5d45502f89b19b16eb4
This commit is contained in:
Zheng Junjie 2024-07-06 19:31:25 +08:00
parent 29618be496
commit b156442437
No known key found for this signature in database
GPG key ID: 3B5AA993E1A2DFF0

View file

@ -40,6 +40,7 @@ (define-module (gnu packages kde-plasma)
#: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 @@ (define-public plasma-workspace-wallpapers
"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")