mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: openrgb: Unbundle more libraries.
* gnu/packages/hardware.scm (openrgb)[source]: Adjust snippet to remove more bundled dependencies.
This commit is contained in:
parent
f726d2fd07
commit
26744bca20
1 changed files with 13 additions and 3 deletions
|
@ -1013,9 +1013,19 @@ (define-public openrgb
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
;; Delete the bundled hueplusplus and json libraries.
|
;; Delete many of the bundled libraries.
|
||||||
(delete-file-recursively "dependencies/hueplusplus-1.0.0")
|
(for-each delete-file-recursively
|
||||||
(delete-file-recursively "dependencies/json")))))
|
(list "dependencies/hidapi-win"
|
||||||
|
"dependencies/hueplusplus-1.0.0"
|
||||||
|
"dependencies/json"
|
||||||
|
"dependencies/libusb-1.0.22"
|
||||||
|
"dependencies/macUSPCIO"
|
||||||
|
"dependencies/mbedtls-2.24.0"
|
||||||
|
"dependencies/NVFC"
|
||||||
|
"dependencies/openrazer-win32"
|
||||||
|
"dependencies/winring0"
|
||||||
|
;; Some bundled appimages
|
||||||
|
"scripts/tools"))))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
|
Loading…
Reference in a new issue