mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
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
1 changed files with 3 additions and 1 deletions
|
@ -171,7 +171,9 @@ (define-public mit-scheme
|
|||
("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 a new issue