diff options
author | Evgeny Pisemsky <mail@pisemsky.site> | 2025-04-23 20:51:33 +0300 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-04-24 10:57:32 +0200 |
commit | 66b4d3fe88763f8744ef6ad88fd2862b1240e5e6 (patch) | |
tree | 689b8740c94199e0bded027979961cda690b801d | |
parent | 93f61013dbf3702554b55087517c916a0835dc1b (diff) | |
download | guix-66b4d3fe88763f8744ef6ad88fd2862b1240e5e6.tar.gz guix-66b4d3fe88763f8744ef6ad88fd2862b1240e5e6.zip |
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>
-rw-r--r-- | gnu/packages/guile-xyz.scm | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 537e84d3f8..a8abefa474 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -3638,24 +3638,26 @@ interface for reading articles in any format.") (name "guile-redis") (version "2.2.0") (home-page "https://github.com/aconchillo/guile-redis") - (source (origin - (method git-fetch) - (uri (git-reference - (url home-page) - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0cb31vj88f3hj93v1lzxcqjyz7ym2gmpk31gv5i2dqv721frnlyj")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0cb31vj88f3hj93v1lzxcqjyz7ym2gmpk31gv5i2dqv721frnlyj")))) (build-system gnu-build-system) (arguments - '(#:make-flags '("GUILE_AUTO_COMPILE=0"))) - (native-inputs - (list autoconf automake pkg-config guile-3.0)) + (list + #:make-flags + #~'("GUILE_AUTO_COMPILE=0"))) + (native-inputs (list autoconf automake pkg-config 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+))) + (description + "Guile-redis provides a Scheme interface to the Redis key-value cache and +store.") + (license license:gpl3+))) (define-public guile2.2-redis (package |