gnu: guile-present: Add "guile3.0-present".
* gnu/packages/gtk.scm (guile-present)[source](snippet): Add "3.0" to the supported Guile versions. (guile3.0-present): New variable.
This commit is contained in:
parent
897186c155
commit
2c9fd7636f
1 changed files with 15 additions and 0 deletions
|
@ -951,6 +951,11 @@ images onto Cairo surfaces.")
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
|
;; Allow builds with Guile 3.0.
|
||||||
|
(substitute* "configure"
|
||||||
|
(("2\\.2 2\\.0")
|
||||||
|
"3.0 2.2 2.0"))
|
||||||
|
|
||||||
;; Install .go files in the right place.
|
;; Install .go files in the right place.
|
||||||
(substitute* "Makefile.in"
|
(substitute* "Makefile.in"
|
||||||
(("/ccache") "/site-ccache"))
|
(("/ccache") "/site-ccache"))
|
||||||
|
@ -991,6 +996,16 @@ includes a tools to generate PDF presentations out of Org mode and Texinfo
|
||||||
documents.")
|
documents.")
|
||||||
(license license:lgpl3+)))
|
(license license:lgpl3+)))
|
||||||
|
|
||||||
|
(define-public guile3.0-present
|
||||||
|
(package
|
||||||
|
(inherit guile-present)
|
||||||
|
(name "guile3.0-present")
|
||||||
|
(inputs `(("guile" ,guile-3.0)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("guile-lib" ,guile3.0-lib)
|
||||||
|
("guile-cairo" ,guile3.0-cairo)
|
||||||
|
("guile-rsvg" ,guile3.0-rsvg)))))
|
||||||
|
|
||||||
(define-public guile-gnome
|
(define-public guile-gnome
|
||||||
(package
|
(package
|
||||||
(name "guile-gnome")
|
(name "guile-gnome")
|
||||||
|
|
Reference in a new issue