all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#54355] [PATCH] gnu: Add ckb-next.
@ 2022-03-12 20:14 Formbi via Guix-patches via
  2022-03-18 14:38 ` bug#54355: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Formbi via Guix-patches via @ 2022-03-12 20:14 UTC (permalink / raw)
  To: 54355

=This patch adds ckb-next, a free app for controlling some Corsair devices.

From 1e9e6403f28ebaccac9bd6f0f7d3bd744516aed1 Mon Sep 17 00:00:00 2001
From: Formbi <formbi@protonmail.com>
Date: Sat, 12 Mar 2022 20:09:26 +0100
Subject: [PATCH] gnu: add ckb-next

* gnu/packages/hardware.scm (ckb-next): add ckb-next
---
 gnu/packages/hardware.scm | 64 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 64 insertions(+)

diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm
index 0a2a7dbb7..e43c18c1a 100644
--- a/gnu/packages/hardware.scm
+++ b/gnu/packages/hardware.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2022 Marcel Kupiec <formbi@protonmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -17,15 +18,20 @@
 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

 (define-module (gnu packages hardware)
+  #:use-module (gnu packages bash)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages gcc)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages libusb)
   #:use-module (gnu packages linux)
+  #:use-module (gnu packages lxqt)
   #:use-module (gnu packages ncurses)
   #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages pulseaudio)
+  #:use-module (gnu packages qt)
   #:use-module (gnu packages xdisorg)
   #:use-module (gnu packages xorg)
+  #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
   #:use-module (guix download)
   #:use-module (guix git-download)
@@ -35,6 +41,64 @@
 ;; This is a module for packages related to physical hardware that don't (yet)
 ;; have a more specific home like gps.scm, security-token.scm, &c.

+(define-public ckb-next
+  (let ((commit "967f44018a9d46efa7203fad38518e9381eba0f3")
+    (revision "0"))
+    (package
+      (name "ckb-next")
+      (version (git-version "0.4.4" revision commit))
+      (source
+       (origin
+     (method git-fetch)
+     (uri (git-reference
+               (url "https://github.com/ckb-next/ckb-next")
+               (commit commit)))
+     (sha256
+          (base32 "0bfpah0zgmyhbi6payymr3p98nfnwqr2xqxgkyzvccz72z246316"))
+     (file-name (git-file-name name version))))
+      (build-system cmake-build-system)
+      (arguments
+       `(#:modules ((guix build cmake-build-system)
+                    (guix build qt-utils)
+                    (guix build utils))
+           #:imported-modules (,@%cmake-build-system-modules
+                       (guix build qt-utils))
+           #:tests? #f
+           #:phases
+           (modify-phases %standard-phases
+             (add-before 'build 'patch-lib-udev
+               (lambda* (#:key inputs outputs #:allow-other-keys)
+             (substitute*
+                 "src/daemon/cmake_install.cmake"
+               (("/lib/udev")
+                (string-append (assoc-ref outputs "out")
+                       "/lib/udev")))))
+             (add-after 'install 'wrap-qt
+               (lambda* (#:key inputs outputs #:allow-other-keys)
+             (let ((out (assoc-ref outputs "out")))
+               (wrap-qt-program "ckb-next" #:output out #:inputs inputs)))))))
+      (native-inputs
+       (list qttools pkg-config))
+      (inputs
+       (list qtbase-5
+         zlib
+         libdbusmenu-qt
+         quazip
+         pulseaudio
+         libxcb
+         xcb-util-wm
+         qtx11extras
+         eudev
+         bash-minimal))
+      (home-page "https://github.com/ckb-next/ckb-next")
+      (synopsis "Open-source driver for Corsair keyboards and mice")
+      (description "ckb-next is an open-source driver for Corsair keyboards and
+mice.  It aims to bring the features of Corsair's proprietary CUE software to
+Linux operating systems.  This project is currently a work in progress, but it
+already supports much of the same functionality, including full RGB animations.
+More features are coming soon.")
+      (license license:gpl2))))
+
 (define-public ddcutil
   (package
     (name "ddcutil")
--
2.35.1






^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#54355: [PATCH] gnu: Add ckb-next.
  2022-03-12 20:14 [bug#54355] [PATCH] gnu: Add ckb-next Formbi via Guix-patches via
@ 2022-03-18 14:38 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2022-03-18 14:38 UTC (permalink / raw)
  To: Formbi; +Cc: 54355-done

Hi,

Formbi <formbi@protonmail.com> skribis:

>>From 1e9e6403f28ebaccac9bd6f0f7d3bd744516aed1 Mon Sep 17 00:00:00 2001
> From: Formbi <formbi@protonmail.com>
> Date: Sat, 12 Mar 2022 20:09:26 +0100
> Subject: [PATCH] gnu: add ckb-next
>
> * gnu/packages/hardware.scm (ckb-next): add ckb-next


[...]

> +(define-public ckb-next
> +  (let ((commit "967f44018a9d46efa7203fad38518e9381eba0f3")
> +    (revision "0"))
> +    (package
> +      (name "ckb-next")
> +      (version (git-version "0.4.4" revision commit))
> +      (source
> +       (origin
> +     (method git-fetch)

I passed it through ‘guix style’ to get conventional formatting:

  https://guix.gnu.org/manual/devel/en/html_node/Submitting-Patches.html

[...]

> +      (home-page "https://github.com/ckb-next/ckb-next")
> +      (synopsis "Open-source driver for Corsair keyboards and mice")
> +      (description "ckb-next is an open-source driver for Corsair keyboards and
> +mice.  It aims to bring the features of Corsair's proprietary CUE software to
> +Linux operating systems.  This project is currently a work in progress, but it
> +already supports much of the same functionality, including full RGB animations.
> +More features are coming soon.")

I tweaked that a bit, removing “open source” (everything is free
software in Guix, no need to mention it) and the reference to “CUE”, as
per the Free System Distribution Guideline (FSDG).

Thanks!

Ludo’.





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-03-18 14:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-12 20:14 [bug#54355] [PATCH] gnu: Add ckb-next Formbi via Guix-patches via
2022-03-18 14:38 ` bug#54355: " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.