mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 16:38:09 +01:00
nongnu: nvidia-libs: Fix non-x86 builds.
* nongnu/packages/nvidia.scm (nvidia-libs)[arguments]: Add catch-all for match install-plan, to fix guix pull. [supported-systems]: Declare.
This commit is contained in:
parent
5e9aca6fb8
commit
c82a492fe1
1 changed files with 4 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
;;; Copyright © 2020 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
|
||||
;;; Copyright © 2020, 2021 Jean-Baptiste Volatier <jbv@pm.me>
|
||||
;;; Copyright © 2020, 2021 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
||||
;;; Copyright © 2021 Pierre Langlois <pierre.langlois@gmx.com>
|
||||
;;;
|
||||
;;; This file is not part of GNU Guix.
|
||||
;;;
|
||||
|
@ -365,7 +366,9 @@ Further xorg should be configured by adding:
|
|||
#:install-plan
|
||||
,@(match (%current-system)
|
||||
("x86_64-linux" '(`(("." "lib" #:include-regexp ("^./[^/]+\\.so")))))
|
||||
("i686-linux" '(`(("32" "lib" #:include-regexp ("^./[^/]+\\.so"))))))))
|
||||
("i686-linux" '(`(("32" "lib" #:include-regexp ("^./[^/]+\\.so")))))
|
||||
(_ '()))))
|
||||
(supported-systems '("i686-linux" "x86_64-linux"))
|
||||
(native-inputs
|
||||
`(("patchelf" ,patchelf)
|
||||
("perl" ,perl)
|
||||
|
|
Loading…
Reference in a new issue