diff options
| author | Danny Milosavljevic <dannym@scratchpost.org> | 2023-11-09 23:07:18 +0100 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@scratchpost.org> | 2023-11-12 23:23:20 +0100 |
| commit | 77386bdbfe6b0c649c05ab37f08051d1ab3e5074 (patch) | |
| tree | d904eb520b92c5303d151ca025708ddf507c9e00 /gnu | |
| parent | 978f4a9dc4c09d12383561d7ae7ab3441c744ebd (diff) | |
gnu: openrgb: Fix up chmod invocations inside udev rules.
* gnu/packages/hardware.scm (openrgb)[arguments]<#:phases>[patch-chmod]: New
phase.
Change-Id: Ib82a8cc42a896aaf9dc7ea0ff36a3c259f9a26af
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/hardware.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm index e1514fb40b8..0652e2933d9 100644 --- a/gnu/packages/hardware.scm +++ b/gnu/packages/hardware.scm | |||
| @@ -1089,11 +1089,17 @@ technology, such as head mounted displays with built in head tracking.") | |||
| 1089 | (("dependencies/json") | 1089 | (("dependencies/json") |
| 1090 | (string-append #$(this-package-input "nlohmann-json") | 1090 | (string-append #$(this-package-input "nlohmann-json") |
| 1091 | "/include/nlohmann"))))) | 1091 | "/include/nlohmann"))))) |
| 1092 | (add-after 'unpack 'patch-chmod | ||
| 1093 | (lambda* (#:key inputs #:allow-other-keys) | ||
| 1094 | (substitute* "scripts/build-udev-rules.sh" | ||
| 1095 | (("/bin/chmod") (string-append (assoc-ref inputs "coreutils") | ||
| 1096 | "/bin/chmod"))))) | ||
| 1092 | ;; Call qmake instead of configure to create a Makefile. | 1097 | ;; Call qmake instead of configure to create a Makefile. |
| 1093 | (replace 'configure | 1098 | (replace 'configure |
| 1094 | (lambda _ (invoke "qmake" "PREFIX=/" "OpenRGB.pro")))))) | 1099 | (lambda _ (invoke "qmake" "PREFIX=/" "OpenRGB.pro")))))) |
| 1095 | (inputs | 1100 | (inputs |
| 1096 | (list hidapi | 1101 | (list coreutils |
| 1102 | hidapi | ||
| 1097 | hueplusplus | 1103 | hueplusplus |
| 1098 | nlohmann-json | 1104 | nlohmann-json |
| 1099 | libusb | 1105 | libusb |
