mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: sbcl: Honour XDG_DATA_DIRS/sbcl-bundle-systems.
* gnu/packages/lisp.scm (asdf-substitutions): New variable. (sbcl)[source]: Add snippet. [native-search-paths]: Add XDG_DATA_DIRS. Signed-off-by: 宋文武 <iyzsong@gmail.com>
This commit is contained in:
parent
eb0ff8a382
commit
8d0489aeb6
1 changed files with 21 additions and 1 deletions
|
@ -47,6 +47,17 @@ (define-module (gnu packages lisp)
|
|||
#:use-module (ice-9 match)
|
||||
#:use-module (srfi srfi-1))
|
||||
|
||||
(define (asdf-substitutions lisp)
|
||||
;; Prepend XDG_DATA_DIRS/LISP-bundle-systems to ASDF's
|
||||
;; 'default-system-source-registry'.
|
||||
`((("\\(,dir \"systems/\"\\)\\)")
|
||||
(format #f
|
||||
"(,dir \"~a-bundle-systems\")))
|
||||
|
||||
,@(loop :for dir :in (xdg-data-dirs \"common-lisp/\")
|
||||
:collect `(:directory (,dir \"systems\"))"
|
||||
,lisp))))
|
||||
|
||||
(define-public gcl
|
||||
(package
|
||||
(name "gcl")
|
||||
|
@ -226,7 +237,12 @@ (define-public sbcl
|
|||
(uri (string-append "mirror://sourceforge/sbcl/sbcl/" version "/sbcl-"
|
||||
version "-source.tar.bz2"))
|
||||
(sha256
|
||||
(base32 "0fjdqnb2rsm2vi9794ywp27jr239ddvzc4xfr0dk49jd4v7p2kc5"))))
|
||||
(base32 "0fjdqnb2rsm2vi9794ywp27jr239ddvzc4xfr0dk49jd4v7p2kc5"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
;; Add sbcl-bundle-systems to 'default-system-source-registry'.
|
||||
`(substitute* "contrib/asdf/asdf.lisp"
|
||||
,@(asdf-substitutions name)))))
|
||||
(build-system gnu-build-system)
|
||||
(outputs '("out" "doc"))
|
||||
;; Bootstrap with CLISP.
|
||||
|
@ -315,6 +331,10 @@ (define (quoted-path input path)
|
|||
#t))))
|
||||
;; No 'check' target, though "make.sh" (build phase) runs tests.
|
||||
#:tests? #f))
|
||||
(native-search-paths
|
||||
(list (search-path-specification
|
||||
(variable "XDG_DATA_DIRS")
|
||||
(files '("share")))))
|
||||
(home-page "http://www.sbcl.org/")
|
||||
(synopsis "Common Lisp implementation")
|
||||
(description "Steel Bank Common Lisp (SBCL) is a high performance Common
|
||||
|
|
Loading…
Reference in a new issue