guix_mirror_bot pushed a commit to branch master
in repository guix.

commit a294a87bffbf3cf005eb2689aa37f38a76733302
Author: Simen Endsjø <[email protected]>
AuthorDate: Thu Sep 11 21:28:33 2025 +0200

    gnu: Add sbcl-stem.
    
    * gnu/packages/lisp-xyz.scm (sbcl-stem, ecl-stem, cl-stem): New variables.
    
    Change-Id: I71c6611047418251d8ac3f16b739a040f42da5fa
    Signed-off-by: jgart <[email protected]>
---
 gnu/packages/lisp-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 8b1e15a55b..16bdad0618 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -29808,6 +29808,33 @@ without the latter being aware of it.")
 (define-public ecl-stealth-mixin
   (sbcl-package->ecl-package sbcl-stealth-mixin))
 
+(define-public sbcl-stem
+  (let ((commit "901e859bdc2b8cc5d8e91dbaca8909e6db05fa84")
+        (revision "0"))
+    (package
+      (name "sbcl-stem")
+      (version (git-version "0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/hanshuebner/stem";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0a2kr09c3qcwg16n8rm15qgy5p9l6z4m72jray0846hqbnji77mp"))))
+      (build-system asdf-build-system/sbcl)
+      (home-page "https://github.com/hanshuebner/stem";)
+      (synopsis "Porter Stemming Algorithm")
+      (description "Porter Stemming Algorithm.")
+      (license license:llgpl))))
+
+(define-public ecl-stem
+  (sbcl-package->ecl-package sbcl-stem))
+
+(define-public cl-stem
+  (sbcl-package->cl-source-package sbcl-stem))
+
 (define-public sbcl-stmx
   ;; No release for years and recent commits contain fixes for recent SBCL
   ;; versions.

Reply via email to