me
/
guix
Archived
1
0
Fork 0

gnu: Add sbcl-clim-pdf.

* gnu/packages/lisp-xyz.scm (sbcl-clim-pdf): New variable.
master
Guillaume Le Vaillant 2020-07-17 14:07:10 +02:00
parent b1ca56bf3b
commit 1a1b584b0e
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 19 additions and 0 deletions

View File

@ -13093,3 +13093,22 @@ specification}, a toolkit for writing GUIs in Common Lisp.")
;; The tests depend on mcclim/test-util, which depends on mcclim, ;; The tests depend on mcclim/test-util, which depends on mcclim,
;; wich depends on mcclim/extensions, which depends on clim-postscript. ;; wich depends on mcclim/extensions, which depends on clim-postscript.
#:tests? #f)))) #:tests? #f))))
(define-public sbcl-clim-pdf
(package
(inherit sbcl-clim-lisp)
(name "sbcl-clim-pdf")
(native-inputs
`(("fiveam" ,sbcl-fiveam)))
(inputs
`(("cl-pdf" ,sbcl-cl-pdf)
("clim-basic" ,sbcl-clim-basic)
("clim-postscript-font" ,sbcl-clim-postscript-font)
("flexi-streams" ,sbcl-flexi-streams)
("swank" ,cl-slime-swank))) ; For drei-mcclim
(arguments
'(#:asd-file "Backends/PDF/clim-pdf.asd"
;; Test suite disabled because of a dependency cycle.
;; The tests depend on mcclim/test-util, which depends on mcclim,
;; wich depends on mcclim/extensions, which depends on clim-pdf.
#:tests? #f))))