[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/09: gnu: Add kcolorpicker.
From: |
guix-commits |
Subject: |
02/09: gnu: Add kcolorpicker. |
Date: |
Sun, 13 Aug 2023 00:50:12 -0400 (EDT) |
iyzsong pushed a commit to branch kde-updates
in repository guix.
commit 89a5785acd516e0637ca3ef670f2da62dc8cd08b
Author: Sughosha <sughosha@disroot.org>
AuthorDate: Sat Aug 12 23:05:49 2023 +0200
gnu: Add kcolorpicker.
* gnu/packages/kde-frameworks.scm (kcolorpicker): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
---
gnu/packages/kde-frameworks.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 445167279b..5bf09289b5 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -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")
- branch kde-updates updated (55e7f320fd -> 461602d07c), guix-commits, 2023/08/13
- 02/09: gnu: Add kcolorpicker.,
guix-commits <=
- 07/09: gnu: Add falkon., guix-commits, 2023/08/13
- 01/09: gnu: Add libkdcraw., guix-commits, 2023/08/13
- 06/09: gnu: Add kompare., guix-commits, 2023/08/13
- 03/09: gnu: Add kimageannotator., guix-commits, 2023/08/13
- 04/09: gnu: Add gwenview., guix-commits, 2023/08/13
- 05/09: gnu: Add kommit., guix-commits, 2023/08/13
- 09/09: gnu: Add kcolorchooser., guix-commits, 2023/08/13
- 08/09: gnu: Add kolourpaint., guix-commits, 2023/08/13