[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: gnu: Add emacs-chatgpt-shell.
From: |
guix-commits |
Subject: |
01/03: gnu: Add emacs-chatgpt-shell. |
Date: |
Sat, 9 Sep 2023 06:28:15 -0400 (EDT) |
lilyp pushed a commit to branch master
in repository guix.
commit 9f6fa3a9580a43d7406ac5b61c2fba0878a67edf
Author: Cayetano Santos <csantosb@inventati.org>
AuthorDate: Sun Jul 30 17:52:58 2023 +0200
gnu: Add emacs-chatgpt-shell.
* gnu/packages/emacs-xyz.scm (emacs-chatgpt-shell): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
---
gnu/packages/emacs-xyz.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index baa67eefbb..1cce55bce9 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -493,6 +493,25 @@ just one-off queries and multiple independent sessions.
It requires an OpenAI
API key.")
(license license:gpl3+)))
+(define-public emacs-chatgpt-shell
+ (package
+ (name "emacs-chatgpt-shell")
+ (version "0.74.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/xenodium/chatgpt-shell")
+ (commit "1de7bfa6a34f20cca813006282d9a8f2ef291f95")))
+ (sha256
+ (base32
+ "1rabpp70qlmc47lmp2v7ckvfjhy6wkk881fxpbv2dchzhn77qk5r"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/xenodium/chatgpt-shell")
+ (synopsis "ChatGPT and DALL-E Emacs shells + Org Babel")
+ (description
+ "chatgpt-shell is a comint-based ChatGPT shell for Emacs.")
+ (license license:gpl3+)))
+
(define-public emacs-geiser-guile
(package
(name "emacs-geiser-guile")