me
/
guix
Archived
1
0
Fork 0

gnu: Add sbcl-mcclim-fonts-truetype.

* gnu/packages/lisp-xyz.scm (sbcl-mcclim-fonts-truetype): New variable.
master
Guillaume Le Vaillant 2020-07-17 11:07:17 +02:00
parent 9721909b9f
commit c085e70712
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 18 additions and 0 deletions

View File

@ -12864,3 +12864,21 @@ specification}, a toolkit for writing GUIs in Common Lisp.")
("swank" ,cl-slime-swank))) ; For drei-mcclim
(arguments
'(#:asd-file "Backends/CLX/mcclim-clx.asd"))))
(define-public sbcl-mcclim-fonts-truetype
(package
(inherit sbcl-clim-lisp)
(name "sbcl-mcclim-fonts-truetype")
(inputs
`(("alexandria" ,sbcl-alexandria)
("cl-aa" ,sbcl-cl-aa)
("cl-paths-ttf" ,sbcl-cl-paths-ttf)
("cl-vectors" ,sbcl-cl-vectors)
("clim-basic" ,sbcl-clim-basic)
("zpb-ttf" ,sbcl-zpb-ttf)))
(arguments
'(#:asd-file "./Extensions/fonts/mcclim-fonts.asd"
#:asd-system-name "mcclim-fonts/truetype"
;; Tests want access to user's fonts, which are not available in
;; build container.
#:tests? #f))))