gnu: emacs-with-editor: Update to 3.0.2.
* gnu/packages/emacs-xyz.scm (emacs-with-editor): Update to 3.0.2. [propagated-inputs]: Changed emacs-dash to emacs-async. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>master
parent
e461d3b750
commit
65555198b2
|
@ -362,42 +362,38 @@ configuration files, such as .gitattributes, .gitignore, and .git/config.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-with-editor
|
(define-public emacs-with-editor
|
||||||
;; This commit fixes an (magit) issue with emacs 28, see
|
(package
|
||||||
;; https://lists.gnu.org/archive/html/help-gnu-emacs/2020-10/msg00211.html
|
(name "emacs-with-editor")
|
||||||
(let ((commit "c4768f51c7415119519b4626d8643d60e584098c")
|
(version "3.0.2")
|
||||||
(revision "1"))
|
(source
|
||||||
(package
|
(origin
|
||||||
(name "emacs-with-editor")
|
(method git-fetch)
|
||||||
(version (git-version "2.9.4" revision commit))
|
(uri (git-reference
|
||||||
(source
|
(url "https://github.com/magit/with-editor")
|
||||||
(origin
|
(commit (string-append "v" version))))
|
||||||
(method git-fetch)
|
(file-name (git-file-name name version))
|
||||||
(uri (git-reference
|
(sha256
|
||||||
(url "https://github.com/magit/with-editor")
|
(base32 "0hw6i5r3adkm4988badi94825lywkrh3sddiff4z04kj1nj15d0k"))))
|
||||||
(commit commit)))
|
(build-system emacs-build-system)
|
||||||
(file-name (git-file-name name version))
|
(arguments
|
||||||
(sha256
|
`(#:phases
|
||||||
(base32 "01ysb9pnscpmingay6njdywkqgj4hn5l5d9igsg3x7p7061jwwix"))))
|
(modify-phases %standard-phases
|
||||||
(build-system emacs-build-system)
|
(add-before 'install 'make-info
|
||||||
(arguments
|
(lambda _
|
||||||
`(#:phases
|
(invoke "makeinfo" "--no-split"
|
||||||
(modify-phases %standard-phases
|
"-o" "with-editor.info" "with-editor.texi"))))))
|
||||||
(add-before 'install 'make-info
|
(native-inputs
|
||||||
(lambda _
|
`(("texinfo" ,texinfo)))
|
||||||
(invoke "makeinfo" "--no-split"
|
(propagated-inputs
|
||||||
"-o" "with-editor.info" "with-editor.texi"))))))
|
`(("emacs-async" ,emacs-async)))
|
||||||
(native-inputs
|
(home-page "https://github.com/magit/with-editor")
|
||||||
`(("texinfo" ,texinfo)))
|
(synopsis "Emacs library for using Emacsclient as EDITOR")
|
||||||
(propagated-inputs
|
(description
|
||||||
`(("emacs-dash" ,emacs-dash)))
|
"This package provides an Emacs library to use the Emacsclient as
|
||||||
(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")
|
||||||
|
|
Reference in New Issue