mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add guile3.0-commonmark.
* gnu/packages/guile-xyz.scm (guile3.0-commonmark): New variable. (guile-commonmark)[arguments]: Patch configure file.
This commit is contained in:
parent
37eda8c044
commit
346386f3f7
1 changed files with 15 additions and 0 deletions
|
@ -2035,6 +2035,15 @@ (define-public guile-commonmark
|
||||||
"3.0 2.2 2.0"))
|
"3.0 2.2 2.0"))
|
||||||
#t))))
|
#t))))
|
||||||
(build-system gnu-build-system)
|
(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
|
(inputs
|
||||||
`(("guile" ,guile-2.2)))
|
`(("guile" ,guile-2.2)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
@ -2061,6 +2070,12 @@ (define-public guile2.0-commonmark
|
||||||
(name "guile2.0-commonmark")
|
(name "guile2.0-commonmark")
|
||||||
(inputs `(("guile" ,guile-2.0)))))
|
(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
|
(define-public mcron
|
||||||
(package
|
(package
|
||||||
(name "mcron")
|
(name "mcron")
|
||||||
|
|
Loading…
Reference in a new issue