mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: mit-scheme: Rename top-level helper.
Suggested by Mark H. Weaver. * gnu/packages/scheme.scm (source-directory): Rename to... (mit-scheme-source-directory): ... this.
This commit is contained in:
parent
319e2d1736
commit
a0efb39ad4
1 changed files with 4 additions and 3 deletions
|
@ -37,10 +37,10 @@ (define-module (gnu packages scheme)
|
|||
#:use-module (gnu packages image)
|
||||
#:use-module (ice-9 match))
|
||||
|
||||
(define (source-directory system version)
|
||||
(define (mit-scheme-source-directory system version)
|
||||
(string-append "mit-scheme-"
|
||||
(if (or (string-prefix? "x86_64" system)
|
||||
(string-prefix? "i686" system))
|
||||
(string-prefix? "i686" system))
|
||||
""
|
||||
"c-")
|
||||
version))
|
||||
|
@ -59,7 +59,8 @@ (define-public mit-scheme
|
|||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(and (zero? (system* "tar" "xzvf"
|
||||
(assoc-ref inputs "source")))
|
||||
(chdir ,(source-directory (%current-system) version))
|
||||
(chdir ,(mit-scheme-source-directory (%current-system)
|
||||
version))
|
||||
(begin
|
||||
;; Delete these dangling symlinks since they break
|
||||
;; `patch-shebangs'.
|
||||
|
|
Loading…
Reference in a new issue