diff options
author | Suhail Singh <suhailsingh247@gmail.com> | 2025-04-02 09:52:23 -0400 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-03 19:52:26 +0200 |
commit | eebbf516579fde4a0f69274f63790acdfffbff2d (patch) | |
tree | b55f791cc63d3d31406b6d93c92e64001c76f112 | |
parent | fbd97a53e634a8c5c396e05051d3ac236f8b677d (diff) | |
download | guix-eebbf516579fde4a0f69274f63790acdfffbff2d.tar.gz guix-eebbf516579fde4a0f69274f63790acdfffbff2d.zip |
gnu: emacs-llm: Fix style.
* gnu/packages/emacs-xyz.scm (emacs-llm): Fix style.
Change-Id: Ia6638963bf19b916ac40a64e967bbe10c9eccf06
Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 6d9124add0..b1ee1fee21 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1878,22 +1878,21 @@ syntax for short lambda.") (package (name "emacs-llm") (version "0.24.2") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/ahyatt/llm") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0kza3jzabp5ilapi3a0ycrc26gvj6s2nf3x1ly4c8d3si6fdlx61")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ahyatt/llm") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kza3jzabp5ilapi3a0ycrc26gvj6s2nf3x1ly4c8d3si6fdlx61")))) (build-system emacs-build-system) (arguments (list ;; there are no tests #:tests? #f)) - (propagated-inputs (list emacs-plz - emacs-plz-event-source + (propagated-inputs (list emacs-plz emacs-plz-event-source emacs-plz-media-type)) (home-page "https://github.com/ahyatt/llm") (synopsis "Emacs library abstracting Large Language Model capabilities") |