diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-09-12 22:29:35 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-09-12 22:29:35 +0300 |
commit | 9a078f4863796bd20f426fb7cb64b719a2f32e95 (patch) | |
tree | 4affef7ec29ea2f0a3a9351ef4b696a4acf49da5 /gnu/packages/video.scm | |
parent | f51940b0f57fd5657f5ae0f6fa6f8b8b55f1dec7 (diff) | |
download | guix-9a078f4863796bd20f426fb7cb64b719a2f32e95.tar guix-9a078f4863796bd20f426fb7cb64b719a2f32e95.tar.gz |
gnu: vapoursynth: Remove mips support.
* gnu/packages/video.scm (vapoursynth)[supported-systems]: New field,
remove support for mips64el which is unsupported.
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index b2c102a4df..8bcb2c49a7 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1272,6 +1272,8 @@ capabilities.") manipulation. It aims to be a modern rewrite of Avisynth, supporting multithreading, generalized colorspaces, per frame properties, and videos with format changes.") + ;; src/core/cpufeatures only allows x86, ARM or PPC + (supported-systems (delete "mips64el-linux" %supported-systems)) ;; As seen from the source files. (license license:lgpl2.1+))) |