mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: ecl-ciel: Remove build phase "build-image" and output "image".
* gnu/packages/lisp-xyz.scm (ecl-ciel)[outputs]: Remove "image". [arguments]: Remove 'build-image' phase. Change-Id: I6640add7f28ac655180fc9b419684dc9d51f5130 Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
1a6a85768e
commit
7e63a35ff2
1 changed files with 11 additions and 1 deletions
|
@ -3664,7 +3664,17 @@ (define-public cl-ciel
|
|||
(sbcl-package->cl-source-package sbcl-ciel))
|
||||
|
||||
(define-public ecl-ciel
|
||||
(sbcl-package->ecl-package sbcl-ciel))
|
||||
;; Remove the "image" output and the build phase "build-image"
|
||||
;; (which fails because ECL has no support for images).
|
||||
(let ((pkg (sbcl-package->ecl-package sbcl-ciel)))
|
||||
(package
|
||||
(inherit pkg)
|
||||
(outputs '("out"))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments pkg)
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(delete 'build-image))))))))
|
||||
|
||||
(define-public sbcl-ciel-repl
|
||||
(let ((commit "0b26d64dcd91a3a2aa962842629a853261dd30fe")
|
||||
|
|
Loading…
Reference in a new issue