mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add kcolorchooser.
* gnu/packages/kde.scm (kcolorchooser): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
b8de8a2a05
commit
461602d07c
1 changed files with 24 additions and 0 deletions
|
@ -649,6 +649,30 @@ (define-public kseexpr
|
|||
expression library, that is used in Krita.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public kcolorchooser
|
||||
(package
|
||||
(name "kcolorchooser")
|
||||
(version "23.04.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/release-service/" version
|
||||
"/src/kcolorchooser-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1ripvn2li74rwngicay9c78j0slia1rpsi1f43rbb36p9af02lwq"))))
|
||||
(build-system qt-build-system)
|
||||
(native-inputs
|
||||
(list extra-cmake-modules))
|
||||
(inputs
|
||||
(list kcoreaddons
|
||||
ki18n
|
||||
kxmlgui))
|
||||
(home-page "https://apps.kde.org/de/kcolorchooser/")
|
||||
(synopsis "Color selector utility")
|
||||
(description "KColorChooser is a utility to select a color.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public kolourpaint
|
||||
(package
|
||||
(name "kolourpaint")
|
||||
|
|
Loading…
Reference in a new issue