mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add emacs-llm-tool-collection.
* gnu/packages/emacs-xyz.scm (emacs-llm-tool-collection): New variable. Change-Id: Ibc9846cdef8aff24e3ee76ac8b857c38bac9aabb Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
52c87c07bb
commit
938c4d0539
1 changed files with 27 additions and 0 deletions
|
@ -2224,6 +2224,33 @@ language model}s out in the world. To respect user freedom, it will warn you
|
|||
before interacting with non-free LLMs.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-llm-tool-collection
|
||||
(let ((commit "6d2765a16dc10af2e1d1911bcabf6d7f287e0434")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-llm-tool-collection")
|
||||
(version (git-version "0.1.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/skissue/llm-tool-collection/")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1rddjhm5jrl5a32bzmhrjfyh54y6ibrsj5pb5hrp3h93iwp16vwk"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
(list #:emacs emacs ;for cl-lib
|
||||
#:tests? #f)) ;no tests
|
||||
(home-page "https://github.com/skissue/llm-tool-collection/")
|
||||
(synopsis "Collection of Emacs Lisp LLM tools")
|
||||
(description
|
||||
"This package provides a collection of tools to be used by
|
||||
@acronym{Large Language Models, LLM} clients in Emacs.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-magit
|
||||
(package
|
||||
(name "emacs-magit")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue