gnu: xf86-video-intel: Only supported on Intel-based systems.
* gnu/packages/xorg.scm (xf86-video-intel)[supported-systems]: Trim to include only Intel-based systems.
This commit is contained in:
parent
893046ff4b
commit
6ec7dd15bb
@ -2605,6 +2605,11 @@ devices, thus making direct access unnecessary.")
|
||||
("xorg-server" ,xorg-server)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(supported-systems
|
||||
;; This driver is only supported on Intel systems.
|
||||
(filter (lambda (system) (or (string-prefix? "i686-" system)
|
||||
(string-prefix? "x86_64-" 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 New Issue
Block a user