From 9e77164e0adfcd67777e15b0273a6edbcf88949b Mon Sep 17 00:00:00 2001 From: Zheng Junjie Date: Sat, 6 Jul 2024 01:00:59 +0800 Subject: gnu: Add kcolorscheme. * gnu/packages/kde-frameworks.scm (kcolorscheme): New variable. Change-Id: I5c2b94eb6b6d5e0a0d1faf313f2bf1bc8b4da2ce --- gnu/packages/kde-frameworks.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'gnu/packages') diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 17f5f0d169..4ddf3ab859 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -590,6 +590,36 @@ 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 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 (package (name "kconfig") -- cgit v1.2.3 option>
path: root/gnu/build/hurd-boot.scm
AgeCommit message (Expand)Author
2022-12-24hurd-boot: Fix list of devices with translators....Fixes a regression introduced in 450f7740283ce160a7482d1c75e6e0ab17f2a6f0 and e3c6575ee93741a43003cd1aa4663151dd90b9f5, which introduced unquote-splicing without changing quote to quasiquote. * gnu/build/hurd-boot.scm (set-hurd-device-translators)[devices]: Use quasiquote, note quote. Ludovic Courtès
2022-11-28system: hurd: Create more ttys....* gnu/build/hurd-boot.scm (set-hurd-device-translators)[devices]: Add more /dev/ttyN nodes. * gnu/system/hurd.scm (%base-services/hurd): Add more 'hurd-getty-service-type' instances. Ludovic Courtès
2022-11-28hurd-boot: Explain why 'getxattr' cannot be used on GNU/Hurd....This is a followup to f25e8f76fec03e5a31c221e7427d6962ece1aa67. * gnu/build/hurd-boot.scm (translated?): Clarify why 'getxattr' cannot be used on GNU/Hurd. Ludovic Courtès
2022-11-28hurd-boot: Create more PTY nodes....* gnu/build/hurd-boot.scm (set-hurd-device-translators): Create more /dev/ptyp* and /dev/ttyp* nodes. Ludovic Courtès