diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-09-21 21:47:56 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-09-21 21:47:56 +0200 |
commit | 39162ee49b08ccbd032324dc057fbafe8809c8a8 (patch) | |
tree | 181e0602ceeaa24bc0dad75bbd554eb37bf5d81a /gnu/packages/music.scm | |
parent | b78891b0120c2e6f7752912d43bc59e18ed9c465 (diff) | |
download | guix-39162ee49b08ccbd032324dc057fbafe8809c8a8.tar guix-39162ee49b08ccbd032324dc057fbafe8809c8a8.tar.gz |
gnu: extempore: Only build on x86_64.
* gnu/packages/algebra.scm (kiss-fft-for-extempore)[supported-systems]:
Only build on x86_64.
* gnu/packages/gl.scm (nanovg-for-extempore)[supported-systems]:
Likewise.
* gnu/packages/image.scm (stb-image-for-extempore)[supported-systems]:
Likewise.
* gnu/packages/llvm.scm (llvm-for-extempore)[supported-systems]:
Likewise.
* gnu/packages/music.scm (portmidi-for-extempore)[supported-systems]:
Likewise.
(extempore)[supported-systems]: Likewise.
Diffstat (limited to 'gnu/packages/music.scm')
-rw-r--r-- | gnu/packages/music.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index c512d533c2..a7715bce24 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -396,6 +396,8 @@ enable professional yet simple and intuitive pattern-based drum programming.") (native-inputs `(("perl" ,perl) ("emacs" ,emacs-no-x))) + ;; Extempore refuses to build on architectures other than x86_64 + (supported-systems '("x86_64-linux")) (home-page "http://benswift.me/extempore-docs/index.html") (synopsis "Programming environment for live coding of multimedia") (description @@ -1243,6 +1245,8 @@ using a system-independent interface.") (build-system cmake-build-system) (arguments `(#:tests? #f)) ; no tests (native-inputs '()) + ;; Extempore refuses to build on architectures other than x86_64 + (supported-systems '("x86_64-linux")) (home-page "https://github.com/extemporelang/portmidi/"))) (define-public python-pyportmidi |