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.
This commit is contained in:
parent
4dd1edc7ae
commit
966629a114
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue