me
/
guix
Archived
1
0
Fork 0

gnu: Add sbcl-mcclim-fonts-clx-truetype.

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

View File

@ -12882,3 +12882,23 @@ specification}, a toolkit for writing GUIs in Common Lisp.")
;; Tests want access to user's fonts, which are not available in
;; build container.
#:tests? #f))))
(define-public sbcl-mcclim-fonts-clx-truetype
(package
(inherit sbcl-clim-lisp)
(name "sbcl-mcclim-fonts-clx-truetype")
(inputs
`(("mcclim-clx" ,sbcl-mcclim-clx)
("mcclim-fonts-truetype" ,sbcl-mcclim-fonts-truetype)
("swank" ,cl-slime-swank))) ; For drei-mcclim
(arguments
'(#:asd-file "./Extensions/fonts/mcclim-fonts.asd"
#:asd-system-name "mcclim-fonts/clx-truetype"
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'fix-asd-system-names
(lambda _
(substitute* "Extensions/fonts/mcclim-fonts.asd"
((":depends-on \\(#:mcclim-fonts/truetype")
":depends-on (#:mcclim-fonts-truetype"))
#t)))))))