mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: Add emacs-gptel.
* gnu/packages/emacs-xyz.scm (emacs-gptel): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
dfd79c6acd
commit
82efb29ffb
1 changed files with 39 additions and 0 deletions
|
@ -418,6 +418,45 @@ (define-public emacs-geiser
|
||||||
e.g. emacs-geiser-guile for Guile.")
|
e.g. emacs-geiser-guile for Guile.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public emacs-gptel
|
||||||
|
(package
|
||||||
|
(name "emacs-gptel")
|
||||||
|
(version "0.3.0")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/karthink/gptel")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1fg3dms7d05zpvkf8kxxh9726qvdfpmfsrgpc9fzm557ai13yhi5"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'use-appropriate-curl
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(substitute* "gptel-curl.el"
|
||||||
|
(("\"curl\"")
|
||||||
|
(string-append "\""
|
||||||
|
(search-input-file inputs "/bin/curl")
|
||||||
|
"\"")))
|
||||||
|
(emacs-substitute-variables "gptel.el"
|
||||||
|
("gptel-use-curl" 't)))))))
|
||||||
|
(inputs (list curl))
|
||||||
|
(propagated-inputs (list emacs-map))
|
||||||
|
(home-page "https://github.com/karthink/gptel")
|
||||||
|
(synopsis "GPTel is a simple ChatGPT client for Emacs")
|
||||||
|
(description
|
||||||
|
"GPTel is a simple ChatGPT asynchronous client for Emacs with no external
|
||||||
|
dependencies. It can interact with ChatGPT from any Emacs buffer with ChatGPT
|
||||||
|
responses encoded in Markdown or Org markup. It supports conversations, not
|
||||||
|
just one-off queries and multiple independent sessions. It requires an OpenAI
|
||||||
|
API key.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-geiser-guile
|
(define-public emacs-geiser-guile
|
||||||
(package
|
(package
|
||||||
(name "emacs-geiser-guile")
|
(name "emacs-geiser-guile")
|
||||||
|
|
Loading…
Reference in a new issue