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 @@ interface for reading articles in any format.")
|
|||
`(("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)
|
||||
|
|
Reference in a new issue