gnu: Add sbcl-stem.

* gnu/packages/lisp-xyz.scm (sbcl-stem, ecl-stem, cl-stem): New variables.

Change-Id: I71c6611047418251d8ac3f16b739a040f42da5fa
Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
Simen Endsjø 2025-09-11 21:28:33 +02:00 committed by jgart
parent b292559a9f
commit a294a87bff
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -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.