mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: mcron: Add "guile3.0-mcron" variant.
* gnu/packages/guile-xyz.scm (mcron)[arguments]: In 'fix-finding-guile' phase, add "3.0". (guile3.0-mcron): New variable.
This commit is contained in:
parent
93d94134cc
commit
3de0d20b80
1 changed files with 7 additions and 1 deletions
|
@ -2132,7 +2132,7 @@ (define-public mcron
|
|||
(add-after 'unpack 'fix-finding-guile
|
||||
(lambda _
|
||||
(substitute* "configure"
|
||||
(("2\\.0") "2.2 2.0"))
|
||||
(("2\\.0") "3.0 2.2 2.0"))
|
||||
#t))
|
||||
(add-before 'check 'adjust-tests
|
||||
(lambda _
|
||||
|
@ -2162,6 +2162,12 @@ (define-public mcron
|
|||
format is also supported.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public guile3.0-mcron
|
||||
(package
|
||||
(inherit mcron)
|
||||
(name "guile3.0-mcron")
|
||||
(inputs `(("guile" ,guile-3.0)))))
|
||||
|
||||
(define-public mcron2
|
||||
;; This was mthl's mcron development branch, and it became mcron 1.1.
|
||||
(deprecated-package "mcron2" mcron))
|
||||
|
|
Loading…
Reference in a new issue