mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: guile-redis: Build with Guile 3.0.
* gnu/packages/guile-xyz.scm (guile-redis)[native-inputs]: Replace guile-2.2 with guile-3.0. (guile2.2-redis): New variable.
This commit is contained in:
parent
ca24b3fb45
commit
24e38f24dd
1 changed files with 9 additions and 1 deletions
|
@ -2216,12 +2216,20 @@ (define-public guile-redis
|
|||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("pkg-config" ,pkg-config)
|
||||
("guile" ,guile-2.2)))
|
||||
("guile" ,guile-3.0)))
|
||||
(synopsis "Redis client library for Guile")
|
||||
(description "Guile-redis provides a Scheme interface to the Redis
|
||||
key-value cache and store.")
|
||||
(license license:lgpl3+)))
|
||||
|
||||
(define-public guile2.2-redis
|
||||
(package
|
||||
(inherit guile-redis)
|
||||
(name "guile2.2-redis")
|
||||
(native-inputs `(("guile" ,guile-2.2)
|
||||
,@(alist-delete "guile"
|
||||
(package-native-inputs guile-redis))))))
|
||||
|
||||
(define-public guile2.0-redis
|
||||
(package
|
||||
(inherit guile-redis)
|
||||
|
|
Loading…
Reference in a new issue