diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-07-30 06:27:21 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-08-01 05:43:33 +0200 |
commit | 3935507f0ffb4bc3a5119efe0bd1bb94b2c76db3 (patch) | |
tree | 8864767d9d66d5d3587985591d291aedd56075a8 /gnu/packages/video.scm | |
parent | a094693de3b5c6a97ef8b4bb280d49f0f1ba5e56 (diff) | |
download | guix-3935507f0ffb4bc3a5119efe0bd1bb94b2c76db3.tar guix-3935507f0ffb4bc3a5119efe0bd1bb94b2c76db3.tar.gz |
gnu: intel-vaapi-driver: Restrict supported systems.
As noted at <https://debbugs.gnu.org/36814> and then promptly forgotten.
This follows up on commit d8d7565b82539bfff721bf884b7f4a3de3e6b4c3.
* gnu/packages/video.scm (intel-vaapi-driver)[supported-systems]:
Build onl on Intel systems.
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 544e305771..6a53833acf 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2762,6 +2762,7 @@ of modern, widely supported codecs.") (list (search-path-specification (variable "LIBVA_DRIVERS_PATH") (files '("lib/dri"))))) + (supported-systems '("i686-linux" "x86_64-linux")) (home-page "https://01.org/linuxmedia/vaapi") (synopsis "VA-API video acceleration driver for Intel GEN Graphics devices") (description |