diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-09-20 21:57:15 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-09-20 22:04:15 +0300 |
commit | c84253f7573edb02a02636899df6be5c98973882 (patch) | |
tree | a345863cb4ec0f464440af3fc131bf2ea648b305 /gnu/packages/scheme.scm | |
parent | 22037a327a0340341df7ae71a9c1d3551c28c705 (diff) | |
download | guix-c84253f7573edb02a02636899df6be5c98973882.tar guix-c84253f7573edb02a02636899df6be5c98973882.tar.gz |
gnu: chez-scheme: Remove arm support.
* gnu/packages/scheme.scm (chez-scheme)[supported-systems]: Remove arm.
Diffstat (limited to 'gnu/packages/scheme.scm')
-rw-r--r-- | gnu/packages/scheme.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm index 4fb0614ca5..9597473ad4 100644 --- a/gnu/packages/scheme.scm +++ b/gnu/packages/scheme.scm @@ -734,8 +734,8 @@ threads.") "/" name ".boot"))) (find-files lib "scheme.boot")) #t)))))) - ;; According to the documentation MIPS is not supported. - (supported-systems (delete "mips64el-linux" %supported-systems)) + ;; According to the documentation MIPS and ARM are not supported. + (supported-systems '("x86_64-linux" "i686-linux")) (home-page "http://www.scheme.com") (synopsis "R6RS Scheme compiler and run-time") (description |