commit 3656ddd9d9a28e0698b4d8a0631535c751067570
parent c7776631c54876ab0760611f98198018f5f13a69
Author: Yuval Langer <yuval.langer@gmail.com>
Date: Sat, 7 Sep 2024 15:55:02 +0300
Update with `guix style` and `guix lint` directives. Also, bump to `1.0.0` stable version.
Diffstat:
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/kakafarm/packages/guile-xyz.scm b/kakafarm/packages/guile-xyz.scm
@@ -318,11 +318,9 @@ arguments.")
(license license:expat))))
(define-public guile-srfi-235
- (let ((version "0.0.1")
+ (let ((version "1.0.0")
(revision "1")
- (commit "643a44aa9d6872962257995ecb0a31eb06a71d88")
- (git-repository-url
- "https://github.com/scheme-requests-for-implementation/srfi-235"))
+ (commit "643a44aa9d6872962257995ecb0a31eb06a71d88"))
(package
(name "guile-srfi-235")
(version (git-version version revision commit))
@@ -347,10 +345,15 @@ arguments.")
"srfi srfi-235"))
(rename-file "srfi/235.sld" "srfi/srfi-235.scm"))))))
(native-inputs (list gnu:packages:guile:guile-3.0))
- (home-page git-repository-url)
- (synopsis "Combinators.")
+ (home-page
+ "https://github.com/scheme-requests-for-implementation/srfi-235")
+ (synopsis "Combinators for Guile Scheme")
(description
- "This SRFI contains various procedures that accept and return procedures, as well as a few others, drawn from an earlier version of Chicken. Common Lisp has a few of them too, and more come from the Standard Prelude from Programming Praxis. Using these procedures helps to keep code terse and reduce the need for ad hoc lambdas.")
+ "This SRFI contains various procedures that accept and return procedures, as
+well as a few others, drawn from an earlier version of Chicken.
+Common Lisp has a few of them too, and more come from the Standard
+Prelude from Programming Praxis. Using these procedures helps to keep
+code terse and reduce the need for ad hoc lambdas.")
(license license:expat))))
(define-public guile-srfi-253