me
/
guix
Archived
1
0
Fork 0

gnu: Add kcolorpicker.

* gnu/packages/kde-frameworks.scm (kcolorpicker): New variable.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
master
Sughosha 2023-08-12 23:05:49 +02:00 committed by 宋文武
parent a900ccf6a6
commit 89a5785acd
No known key found for this signature in database
GPG Key ID: D415BF253B515976
1 changed files with 27 additions and 0 deletions

View File

@ -33,6 +33,7 @@
#:use-module (guix build-system python)
#:use-module (guix build-system qt)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix utils)
@ -557,6 +558,32 @@ Internet).")
license:lgpl2.1 license:lgpl2.1+ license:expat
license:lgpl3+ license:mpl1.1))))
(define-public kcolorpicker
(package
(name "kcolorpicker")
(version "0.2.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ksnip/kColorPicker")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1aw41mj0hxin2h3cldiiv7ivq5qv97l0ww42yr7j8hmkzj7qq6ba"))))
(build-system qt-build-system)
(propagated-inputs (list qtbase-5))
(arguments
(list #:configure-flags #~'("-DBUILD_TESTS=ON")))
(home-page "https://github.com/ksnip/kColorPicker")
(synopsis "Color Picker with popup menu")
(description
"@code{KColorPicker} is a subclass of @code{QToolButton} with color popup
menu which lets you select a color. The popup features a color dialog button
which can be used to add custom colors to the popup menu.")
(license license:lgpl3+)))
(define-public kconfig
(package
(name "kconfig")