mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: guile-email: Switch to Guile 3.0.
* gnu/packages/guile-xyz.scm (guile-email)[inputs]: Switch to GUILE-3.0. (guile2.2-email): New variable. (guile3.0-email): Define in terms of 'deprecated-package'.
This commit is contained in:
parent
ca03dca59d
commit
ca6c150900
1 changed files with 7 additions and 4 deletions
|
@ -1039,7 +1039,7 @@ (define-public guile-email
|
|||
`(("pkg-config" ,pkg-config)
|
||||
("lzip" ,lzip)))
|
||||
(inputs
|
||||
`(("guile" ,guile-2.2)))
|
||||
`(("guile" ,guile-3.0)))
|
||||
(arguments
|
||||
'(#:make-flags '("GUILE_AUTO_COMPILE=0"))) ; to prevent guild warnings
|
||||
(home-page "https://guile-email.systemreboot.net")
|
||||
|
@ -1050,13 +1050,16 @@ (define-public guile-email
|
|||
format.")
|
||||
(license license:agpl3+)))
|
||||
|
||||
(define-public guile3.0-email
|
||||
(define-public guile2.2-email
|
||||
(package
|
||||
(inherit guile-email)
|
||||
(name "guile3.0-email")
|
||||
(inputs `(("guile" ,guile-next)
|
||||
(name "guile2.2-email")
|
||||
(inputs `(("guile" ,guile-2.2)
|
||||
,@(alist-delete "guile" (package-inputs guile-email))))))
|
||||
|
||||
(define-public guile3.0-email
|
||||
(deprecated-package "guile3.0-email" guile-email))
|
||||
|
||||
(define-public guile-newt
|
||||
(package
|
||||
(name "guile-newt")
|
||||
|
|
Loading…
Reference in a new issue