guix_mirror_bot pushed a commit to branch master in repository guix. commit c50365d5941b73482f48e430ae632a940021ed1c Author: Cayetano Santos <csant...@inventati.org> AuthorDate: Wed Jul 23 11:29:35 2025 +0200
gnu: Add emacs-dall-e-shell. * gnu/packages/emacs-xyz.scm (emacs-dall-e-shell): New variable. Change-Id: I5addd18f297450ae04d9be1993244a5fdf016ebc Signed-off-by: Liliana Marie Prikler <liliana.prik...@gmail.com> --- gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 525dee68a9..55c337b85e 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -780,6 +780,31 @@ summarizing text using an LLM.") for multiple backends.") (license license:gpl3+))) +(define-public emacs-dall-e-shell + (let ((commit "efec43ab3338e59f12165110e6c6c957345f6257") + (revision "0")) + (package + (name "emacs-dall-e-shell") + (version (git-version "0.43.2" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xenodium/dall-e-shell/") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1fab097pgqc9by9dhjmsgn3grp905h7pivnz46w9s52pa1pvbrmv")))) + (build-system emacs-build-system) + (arguments (list #:tests? #f)) ;no tests + (propagated-inputs (list emacs-shell-maker)) + (home-page "https://github.com/xenodium/dall-e-shell/") + (synopsis "Emacs shell for Dall-e") + (description + "Dall-e Shell is a comint-based Dall-e shell for Emacs.") + (license license:gpl3+)))) + (define-public emacs-geiser-guile (package (name "emacs-geiser-guile")