~ruther/guix-local

938c4d0539033ecb08b88028a495ebe41230a84a — Cayetano Santos 8 months ago 52c87c0
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>
1 files changed, 27 insertions(+), 0 deletions(-)

M gnu/packages/emacs-xyz.scm
M gnu/packages/emacs-xyz.scm => gnu/packages/emacs-xyz.scm +27 -0
@@ 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")