diff options
author | Zhu Zihao <all_but_last@163.com> | 2025-10-11 20:50:32 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-10-12 22:22:01 +0200 |
commit | 9f8b1cfdf6d17b7c1e1011a36e7fef4d5c17f3bf (patch) | |
tree | 388a23272c61fc68b43ddfc43587464ee43a7012 | |
parent | 91d5128c7d591069a644632cd14fecc463f0b2ba (diff) |
gnu: guile-extensible-match: Fix typo in synopsis and wrong license.
* gnu/packages/guile-xyz.scm (guile-extensible-match)[synopsis]: Fix typo
"patter" to "pattern".
[license]: Use CC0 according to the request from package author.
Change-Id: I01d5a1a96c94b08f08b9cd8cba14422547d72baa
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/guile-xyz.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index c1991b10e7..e699b3d97b 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -2361,13 +2361,12 @@ format.") (native-inputs (list guile-3.0)) (propagated-inputs (list guile-srfi-133)) (home-page "https://codeberg.org/dpk/extensible-match") - (synopsis - "Extensible patter-matching library") + (synopsis "Extensible pattern-matching library") (description "Guile-extensible-match is an implementation of SRFI-262. It provides user extensible pattern matching syntax. This implementation use a range of optimizations to generate efficient matching code.") - (license license:expat))) + (license license:cc0))) (define-public guile-newra ;; There has been no release let. |