diff options
author | Eric Bavier <bavier@posteo.net> | 2025-02-17 05:45:04 +0000 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-30 16:36:39 +0200 |
commit | 6694fdd76e21f6679fb7619d7034d249b0e68840 (patch) | |
tree | 057208658d8b131eec6f9e2cb23103fde9fec69b | |
parent | 8431f963912d793f43d33a43cf961c356bef31dc (diff) |
gnu: ckb-next: Update to 0.6.0.
* gnu/packages/hardware.scm (ckb-next): Update to 0.6.0.
Change-Id: Icde6c472663975aeed0b578528fef21ac1cccfde
Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r-- | gnu/packages/hardware.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm index 33fc25ef71..7ee03cbd24 100644 --- a/gnu/packages/hardware.scm +++ b/gnu/packages/hardware.scm @@ -20,6 +20,7 @@ ;;; Copyright © 2024 Giacomo Leidi <goodoldpaul@autistici.org> ;;; Copyright © 2024 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2024 Jakob Kirsch <jakob.kirsch@web.de> +;;; Copyright © 2025 Eric Bavier <bavier@posteo.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -492,19 +493,17 @@ support.") (license license:gpl2+))) (define-public ckb-next - (let ((commit "967f44018a9d46efa7203fad38518e9381eba0f3") - (revision "0")) (package (name "ckb-next") - (version (git-version "0.4.4" revision commit)) + (version "0.6.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/ckb-next/ckb-next") - (commit commit))) + (commit (string-append "v" version)))) (sha256 (base32 - "0bfpah0zgmyhbi6payymr3p98nfnwqr2xqxgkyzvccz72z246316")) + "1s6xz2d631rds0bsxk26smqjs9jg3lwnjrjh2sw8hc7h7l8jyiqv")) (file-name (git-file-name name version)))) (build-system cmake-build-system) (arguments @@ -545,7 +544,7 @@ support.") the features of Corsair's proprietary software to Linux-based operating systems. It already supports much of the same functionality, including full RGB animations.") - (license license:gpl2)))) + (license license:gpl2))) (define-public ddcutil (package |