me
/
guix
Archived
1
0
Fork 0

gnu: Add kgamma.

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

Signed-off-by: Marius Bakke <marius@gnu.org>
Petr Hodina 2022-08-26 06:01:45 +02:00 committed by Marius Bakke
parent 605a6c87cb
commit 8ca39d7a12
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 26 additions and 0 deletions

View File

@ -138,6 +138,32 @@ These window decorations can be used by for example an X11 based window
manager which re-parents a Client window to a window decoration frame.")
(license license:lgpl3+)))
(define-public kgamma
(package
(name "kgamma")
(version "5.25.5")
(source (origin
(method url-fetch)
(uri (string-append "mirror://kde/stable/plasma/"
version "/" name "5-"
version ".tar.xz"))
(sha256
(base32
"1c305bs50km7bsn0phz7yj4x2168sxwsw9zxbpcgw4q3r53c0ywz"))))
(build-system qt-build-system)
(native-inputs (list extra-cmake-modules))
(inputs (list kauth
kcoreaddons
kconfig
kconfigwidgets
kdoctools
ki18n))
(synopsis "Adjust monitor gamma settings")
(description
"This package provides a tool to adjust your monitor gamma settings.")
(home-page "https://invent.kde.org/plasma/kgamma5")
(license license:gpl2+)))
(define-public ksshaskpass
(package
(name "ksshaskpass")