mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: Add kcolorscheme.
* gnu/packages/kde-frameworks.scm (kcolorscheme): New variable. Change-Id: I5c2b94eb6b6d5e0a0d1faf313f2bf1bc8b4da2ce
This commit is contained in:
parent
96912c3a71
commit
9e77164e0a
1 changed files with 30 additions and 0 deletions
|
@ -590,6 +590,36 @@ (define-public kcolorpicker
|
||||||
which can be used to add custom colors to the popup menu.")
|
which can be used to add custom colors to the popup menu.")
|
||||||
(license license:lgpl3+)))
|
(license license:lgpl3+)))
|
||||||
|
|
||||||
|
(define-public kcolorscheme
|
||||||
|
(package
|
||||||
|
(name "kcolorscheme")
|
||||||
|
(version "6.3.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://kde/stable/frameworks/"
|
||||||
|
(version-major+minor version) "/"
|
||||||
|
name "-" version ".tar.xz"))
|
||||||
|
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0dch0iv6kkbzc7cl5fbcls1ll2h4jdd16kv9g5d9y041ryyk05ri"))))
|
||||||
|
(build-system qt-build-system)
|
||||||
|
(native-inputs (list extra-cmake-modules))
|
||||||
|
(inputs (list kguiaddons ki18n
|
||||||
|
qtdeclarative))
|
||||||
|
(propagated-inputs (list kconfig))
|
||||||
|
(arguments (list #:qtbase qtbase))
|
||||||
|
(synopsis "Classes to read and interact with KColorScheme")
|
||||||
|
(description "This package provide a Classes to read and interact with
|
||||||
|
KColorScheme.")
|
||||||
|
(home-page "https://community.kde.org/Frameworks")
|
||||||
|
(license (list license:cc0
|
||||||
|
license:lgpl2.0+
|
||||||
|
license:lgpl2.1
|
||||||
|
license:bsd-2
|
||||||
|
license:lgpl3))))
|
||||||
|
|
||||||
(define-public kconfig
|
(define-public kconfig
|
||||||
(package
|
(package
|
||||||
(name "kconfig")
|
(name "kconfig")
|
||||||
|
|
Loading…
Reference in a new issue