mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: sbcl-lparallel: Modify system definition to require sb-cltl2.
* gnu/packages/lisp-xyz.scm (sbcl-lparallel)[arguments]: Add 'fix-dependency' phase to modify system definition to require sb-cltl2. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
f9d4073612
commit
388a89750e
1 changed files with 11 additions and 0 deletions
|
@ -3197,6 +3197,17 @@ WebKit browsing engine.")
|
||||||
`(("alexandria" ,sbcl-alexandria)
|
`(("alexandria" ,sbcl-alexandria)
|
||||||
("bordeaux-threads" ,sbcl-bordeaux-threads)
|
("bordeaux-threads" ,sbcl-bordeaux-threads)
|
||||||
("trivial-garbage" ,sbcl-trivial-garbage)))
|
("trivial-garbage" ,sbcl-trivial-garbage)))
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-dependency
|
||||||
|
;; lparallel loads a SBCL specific system in its asd file. This is
|
||||||
|
;; not carried over into the fasl which is generated. In order for
|
||||||
|
;; it to be carried over, it needs to be listed as a dependency.
|
||||||
|
(lambda _
|
||||||
|
(substitute* "lparallel.asd"
|
||||||
|
((":depends-on \\(:alexandria" all)
|
||||||
|
(string-append all " #+sbcl :sb-cltl2"))))))))
|
||||||
(home-page "https://lparallel.org/")
|
(home-page "https://lparallel.org/")
|
||||||
(synopsis "Parallelism for Common Lisp")
|
(synopsis "Parallelism for Common Lisp")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue