summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2026-02-01 01:24:11 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2026-02-01 01:57:42 +0100
commitc79b96dd2ef5a088d236e6e373793e1cb6eba3e1 (patch)
treef43e9689bfa871449e80f433b8346d2c7fd98e20 /gnu
parentf23dfb2be8aa1dbb634333e48af762258622da4f (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
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/emacs-xyz.scm58
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.")
16987 (license license:gpl3+)))) 16987 (license license:gpl3+))))
16988 16988
16989(define-public emacs-claude-code 16989(define-public emacs-claude-code
16990 ;; There is no proper release/tag. 16990 (package
16991 (let ((commit "becece683bcf60f7b150a87a30ef14885dcf8ce3") 16991 (name "emacs-claude-code")
16992 (revision "0")) 16992 (version "0.7.1")
16993 (package 16993 (source
16994 (name "emacs-claude-code") 16994 (origin
16995 (version (git-version "0.4.5" revision commit)) 16995 (method git-fetch)
16996 (source 16996 (uri (git-reference
16997 (origin 16997 (url "https://github.com/yuya373/claude-code-emacs")
16998 (method git-fetch) 16998 (commit (string-append "v" version))))
16999 (uri (git-reference 16999 (file-name (git-file-name name version))
17000 (url "https://github.com/stevemolitor/claude-code.el") 17000 (sha256
17001 (commit commit))) 17001 (base32
17002 (file-name (git-file-name name version)) 17002 "0hvmvp5yq0pidb5mry68pc0lirz3b61cyh25am60432xdkq2pv74"))))
17003 (sha256 17003 (build-system emacs-build-system)
17004 (base32 17004 (arguments
17005 "0z77nxazkw08pmqam2z27a56s9nyp72a1vvc0ba3vgcwfkjx0v81")))) 17005 (list
17006 (build-system emacs-build-system) 17006 #:include #~(cons "^bin\\/" %default-include)
17007 (arguments 17007 #:tests? #f)) ; There are no tests.
17008 (list 17008 (propagated-inputs
17009 #:include #~(cons "^bin\\/" %default-include) 17009 (list emacs-inheritenv
17010 #:tests? #f)) ; There are no tests. 17010 emacs-markdown-mode
17011 (propagated-inputs 17011 emacs-projectile
17012 (list emacs-transient 17012 emacs-transient
17013 emacs-inheritenv)) 17013 emacs-vterm))
17014 (home-page "https://github.com/stevemolitor/claude-code.el") 17014 (home-page "https://github.com/stevemolitor/claude-code.el")
17015 (synopsis "Claude Code Emacs integration") 17015 (synopsis "Claude Code Emacs integration")
17016 (description 17016 (description
17017 "This package provides convenient ways to interact with Claude from 17017 "This package provides convenient ways to interact with Claude from
17018within Emacs, including sending commands, toggling the Claude window, and 17018within Emacs, including sending commands, toggling the Claude window, and
17019accessing slash commands.") 17019accessing slash commands.")
17020 (license license:asl2.0)))) 17020 (license license:asl2.0)))
17021 17021
17022(define-public emacs-claude-code-ide 17022(define-public emacs-claude-code-ide
17023 ;; Upstream does not make versioned releases. 17023 ;; Upstream does not make versioned releases.