[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: xf86-video-intel: Only supported on Intel-based systems.
From: |
Mark H. Weaver |
Subject: |
02/03: gnu: xf86-video-intel: Only supported on Intel-based systems. |
Date: |
Wed, 28 Jan 2015 20:43:36 +0000 |
mhw pushed a commit to branch master
in repository guix.
commit 6ec7dd15bb48ecfcd054c68a183269af2dee0cb5
Author: Mark H Weaver <address@hidden>
Date: Wed Jan 28 15:39:08 2015 -0500
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.
---
gnu/packages/xorg.scm | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index fe269c6..fd142a5 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -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")