mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: xf86-video-geode: Only supported on i686 systems.
* gnu/packages/xorg.scm (xf86-video-geode)[supported-systems]: Trim to include only i686-based systems.
This commit is contained in:
parent
6ec7dd15bb
commit
a884ad0bff
1 changed files with 4 additions and 0 deletions
|
@ -2499,6 +2499,10 @@ (define-public xf86-video-geode
|
|||
(build-system gnu-build-system)
|
||||
(inputs `(("pkg-config" ,pkg-config)
|
||||
("xorg-server" ,xorg-server)))
|
||||
(supported-systems
|
||||
;; This driver is only supported on i686 systems.
|
||||
(filter (lambda (system) (string-prefix? "i686-" system))
|
||||
%supported-systems))
|
||||
(home-page "http://www.x.org/wiki/")
|
||||
(synopsis "Xorg implementation of the X Window System")
|
||||
(description "X.org provides an implementation of the X Window System")
|
||||
|
|
Loading…
Reference in a new issue