mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add kgamma.
* gnu/packages/kde-plasma.scm (kgamma): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
605a6c87cb
commit
8ca39d7a12
1 changed files with 26 additions and 0 deletions
|
@ -138,6 +138,32 @@ (define-public kdecoration
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue