gnu: mit-scheme: Match all the system types in 'inputs'.

Fixes a regression introduced in
d870cc5e8a whereby "guix package -A" on
one of the non-x86 systems would crash.

* gnu/packages/scheme.scm (mit-scheme)[inputs]: Reintroduce catch-all
case.
master
Ludovic Courtès 2018-12-14 23:39:08 +01:00
parent 4dd1edc7ae
commit 966629a114
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 3 additions and 1 deletions

View File

@ -171,7 +171,9 @@
("x86_64-linux"
(string-append version "-x86-64"))
("i686-linux"
(string-append version "-i386")))
(string-append version "-i386"))
(_
(string-append "c-" version)))
".tar.gz"))
(sha256
(match (%current-system)