diff options
| author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2026-02-01 01:24:11 +0100 |
|---|---|---|
| committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2026-02-01 01:57:42 +0100 |
| commit | c79b96dd2ef5a088d236e6e373793e1cb6eba3e1 (patch) | |
| tree | f43e9689bfa871449e80f433b8346d2c7fd98e20 | |
| parent | f23dfb2be8aa1dbb634333e48af762258622da4f (diff) | |
gnu: emacs-claude-code: Update to 0.7.1.
* gnu/packages/emacs-xyz.scm (emacs-claude-code): Update to 0.7.1.
[source]: Use newer URL.
[propagated-inputs]: Add emacs-markdown-mode, emacs-projectile and emacs-vterm.
Change-Id: Id01b5f8dbfba4b3d21cc66f1c5fab54ab23ec45d
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 56f16b2a0f7..322b4b4705f 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -16987,37 +16987,37 @@ allowing unprefixed keys to insert their respective characters as expected.") (license license:gpl3+)))) (define-public emacs-claude-code - ;; There is no proper release/tag. - (let ((commit "becece683bcf60f7b150a87a30ef14885dcf8ce3") - (revision "0")) - (package - (name "emacs-claude-code") - (version (git-version "0.4.5" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stevemolitor/claude-code.el") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0z77nxazkw08pmqam2z27a56s9nyp72a1vvc0ba3vgcwfkjx0v81")))) - (build-system emacs-build-system) - (arguments - (list - #:include #~(cons "^bin\\/" %default-include) - #:tests? #f)) ; There are no tests. - (propagated-inputs - (list emacs-transient - emacs-inheritenv)) - (home-page "https://github.com/stevemolitor/claude-code.el") - (synopsis "Claude Code Emacs integration") - (description - "This package provides convenient ways to interact with Claude from + (package + (name "emacs-claude-code") + (version "0.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/yuya373/claude-code-emacs") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0hvmvp5yq0pidb5mry68pc0lirz3b61cyh25am60432xdkq2pv74")))) + (build-system emacs-build-system) + (arguments + (list + #:include #~(cons "^bin\\/" %default-include) + #:tests? #f)) ; There are no tests. + (propagated-inputs + (list emacs-inheritenv + emacs-markdown-mode + emacs-projectile + emacs-transient + emacs-vterm)) + (home-page "https://github.com/stevemolitor/claude-code.el") + (synopsis "Claude Code Emacs integration") + (description + "This package provides convenient ways to interact with Claude from within Emacs, including sending commands, toggling the Claude window, and accessing slash commands.") - (license license:asl2.0)))) + (license license:asl2.0))) (define-public emacs-claude-code-ide ;; Upstream does not make versioned releases. |
