me
/
guix
Archived
1
0
Fork 0

gnu: Add guile3.0-commonmark.

* gnu/packages/guile-xyz.scm (guile3.0-commonmark): New variable.
(guile-commonmark)[arguments]: Patch configure file.
master
Ricardo Wurmus 2020-01-20 20:24:02 +01:00
parent 37eda8c044
commit 346386f3f7
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 15 additions and 0 deletions

View File

@ -2035,6 +2035,15 @@ key-value cache and store.")
"3.0 2.2 2.0"))
#t))))
(build-system gnu-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'support-guile-3.0
(lambda _
(substitute* "configure"
(("_guile_versions_to_search=\"2.2")
"_guile_versions_to_search=\"3.0 2.2"))
#t)))))
(inputs
`(("guile" ,guile-2.2)))
(native-inputs
@ -2061,6 +2070,12 @@ is no support for parsing block and inline level HTML.")
(name "guile2.0-commonmark")
(inputs `(("guile" ,guile-2.0)))))
(define-public guile3.0-commonmark
(package
(inherit guile-commonmark)
(name "guile3.0-commonmark")
(inputs `(("guile" ,guile-3.0)))))
(define-public mcron
(package
(name "mcron")