summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@friendly-machines.com>2025-02-14 17:14:51 +0100
committerDanny Milosavljevic <dannym@friendly-machines.com>2025-02-14 17:16:28 +0100
commit93551174af7a96d61f22f013ad1b9935106bf040 (patch)
treefdc465b01060ddd1f4e907fc78810ed6ba1471cb /gnu
parentf7fb297f2dc59b8d0da7a18b1f69ec550398f734 (diff)
gnu: openrgb: Support wayland.
* gnu/packages/hardware.scm (openrgb)[inputs]: Add qtwayland-5. [build-system]: Switch to qt-build-system. Change-Id: I9877876315af280fbe2b53b45bdc89012ffc22ed
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/hardware.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm
index 5c84531216c..9ef98a17c06 100644
--- a/gnu/packages/hardware.scm
+++ b/gnu/packages/hardware.scm
@@ -108,6 +108,7 @@
108 #:use-module (guix build-system perl) 108 #:use-module (guix build-system perl)
109 #:use-module (guix build-system pyproject) 109 #:use-module (guix build-system pyproject)
110 #:use-module (guix build-system python) 110 #:use-module (guix build-system python)
111 #:use-module (guix build-system qt)
111 #:use-module (guix download) 112 #:use-module (guix download)
112 #:use-module (guix gexp) 113 #:use-module (guix gexp)
113 #:use-module (guix git-download) 114 #:use-module (guix git-download)
@@ -1142,7 +1143,7 @@ technology, such as head mounted displays with built in head tracking.")
1142 "dependencies/winring0" 1143 "dependencies/winring0"
1143 ;; Some bundled appimages 1144 ;; Some bundled appimages
1144 "scripts/tools")))))) 1145 "scripts/tools"))))))
1145 (build-system cmake-build-system) 1146 (build-system qt-build-system)
1146 (arguments 1147 (arguments
1147 (list 1148 (list
1148 #:tests? #f ; doesn't have tests 1149 #:tests? #f ; doesn't have tests
@@ -1174,7 +1175,8 @@ technology, such as head mounted displays with built in head tracking.")
1174 nlohmann-json 1175 nlohmann-json
1175 libusb 1176 libusb
1176 mbedtls-lts 1177 mbedtls-lts
1177 qtbase-5)) 1178 qtbase-5
1179 qtwayland-5))
1178 (native-inputs 1180 (native-inputs
1179 (list pkg-config 1181 (list pkg-config
1180 qttools-5)) 1182 qttools-5))