mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: emacs-with-editor: Update to 2.9.4-1.
* gnu/packages/emacs-xyz.scm (emacs-with-editor): Update to 2.9.4-1. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
c0001b8bfc
commit
4caa84e299
1 changed files with 24 additions and 20 deletions
|
@ -383,29 +383,33 @@ (define-public git-modes
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-with-editor
|
(define-public emacs-with-editor
|
||||||
(package
|
;; This commit fixes an (magit) issue with emacs 28, see
|
||||||
(name "emacs-with-editor")
|
;; https://lists.gnu.org/archive/html/help-gnu-emacs/2020-10/msg00211.html
|
||||||
(version "2.9.4")
|
(let ((commit "c4768f51c7415119519b4626d8643d60e584098c")
|
||||||
(source
|
(revision "1"))
|
||||||
(origin
|
(package
|
||||||
(method git-fetch)
|
(name "emacs-with-editor")
|
||||||
(uri (git-reference
|
(version (git-version "2.9.4" revision commit))
|
||||||
(url "https://github.com/magit/with-editor")
|
(source
|
||||||
(commit (string-append "v" version))))
|
(origin
|
||||||
(file-name (git-file-name name version))
|
(method git-fetch)
|
||||||
(sha256
|
(uri (git-reference
|
||||||
(base32 "1z3214zjf3dassb31k14gq4nbr3q8g5x87ydfah28hm4j08v0wb3"))))
|
(url "https://github.com/magit/with-editor")
|
||||||
(build-system emacs-build-system)
|
(commit commit)))
|
||||||
(propagated-inputs
|
(file-name (git-file-name name version))
|
||||||
`(("emacs-dash" ,emacs-dash)))
|
(sha256
|
||||||
(home-page "https://github.com/magit/with-editor")
|
(base32 "01ysb9pnscpmingay6njdywkqgj4hn5l5d9igsg3x7p7061jwwix"))))
|
||||||
(synopsis "Emacs library for using Emacsclient as EDITOR")
|
(build-system emacs-build-system)
|
||||||
(description
|
(propagated-inputs
|
||||||
"This package provides an Emacs library to use the Emacsclient as
|
`(("emacs-dash" ,emacs-dash)))
|
||||||
|
(home-page "https://github.com/magit/with-editor")
|
||||||
|
(synopsis "Emacs library for using Emacsclient as EDITOR")
|
||||||
|
(description
|
||||||
|
"This package provides an Emacs library to use the Emacsclient as
|
||||||
@code{$EDITOR} of child processes, making sure they know how to call home.
|
@code{$EDITOR} of child processes, making sure they know how to call home.
|
||||||
For remote processes a substitute is provided, which communicates with Emacs
|
For remote processes a substitute is provided, which communicates with Emacs
|
||||||
on stdout instead of using a socket as the Emacsclient does.")
|
on stdout instead of using a socket as the Emacsclient does.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-libgit
|
(define-public emacs-libgit
|
||||||
(let ((commit "0ef8b13aef011a98b7da756e4f1ce3bb18e4d55a")
|
(let ((commit "0ef8b13aef011a98b7da756e4f1ce3bb18e4d55a")
|
||||||
|
|
Loading…
Reference in a new issue