mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: guile-redis: Fix wrong license.
* gnu/packages/guile-xyz.scm (guile-redis): Fix wrong license, run guix style. [arguments]: Use gexps. [license]: Change from lgpl3+ to gpl3+. Change-Id: I7a9d53b137ce4340ce4d830d354b5da328c224e0 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
93f61013db
commit
66b4d3fe88
1 changed files with 17 additions and 15 deletions
|
@ -3638,24 +3638,26 @@ interface for reading articles in any format.")
|
||||||
(name "guile-redis")
|
(name "guile-redis")
|
||||||
(version "2.2.0")
|
(version "2.2.0")
|
||||||
(home-page "https://github.com/aconchillo/guile-redis")
|
(home-page "https://github.com/aconchillo/guile-redis")
|
||||||
(source (origin
|
(source
|
||||||
(method git-fetch)
|
(origin
|
||||||
(uri (git-reference
|
(method git-fetch)
|
||||||
(url home-page)
|
(uri (git-reference
|
||||||
(commit version)))
|
(url home-page)
|
||||||
(file-name (git-file-name name version))
|
(commit version)))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"0cb31vj88f3hj93v1lzxcqjyz7ym2gmpk31gv5i2dqv721frnlyj"))))
|
(base32 "0cb31vj88f3hj93v1lzxcqjyz7ym2gmpk31gv5i2dqv721frnlyj"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:make-flags '("GUILE_AUTO_COMPILE=0")))
|
(list
|
||||||
(native-inputs
|
#:make-flags
|
||||||
(list autoconf automake pkg-config guile-3.0))
|
#~'("GUILE_AUTO_COMPILE=0")))
|
||||||
|
(native-inputs (list autoconf automake pkg-config guile-3.0))
|
||||||
(synopsis "Redis client library for Guile")
|
(synopsis "Redis client library for Guile")
|
||||||
(description "Guile-redis provides a Scheme interface to the Redis
|
(description
|
||||||
key-value cache and store.")
|
"Guile-redis provides a Scheme interface to the Redis key-value cache and
|
||||||
(license license:lgpl3+)))
|
store.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public guile2.2-redis
|
(define-public guile2.2-redis
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue