mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-27 19:35:10 -06:00
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:
parent
b292559a9f
commit
a294a87bff
1 changed files with 27 additions and 0 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue