mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
gnu: emacs-with-editor: Update to 3.1.0.
* gnu/packages/emacs-xyz.scm (emacs-with-editor): Update to 3.1.0. [arguments]<#:phases>: Add phases to mirror upstream directory layout modification.
This commit is contained in:
parent
a655d731e2
commit
66f86ebb74
1 changed files with 9 additions and 4 deletions
|
@ -674,7 +674,7 @@ (define-public git-modes
|
|||
(define-public emacs-with-editor
|
||||
(package
|
||||
(name "emacs-with-editor")
|
||||
(version "3.0.5")
|
||||
(version "3.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -683,15 +683,20 @@ (define-public emacs-with-editor
|
|||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1pynm4ng4rki2b2ka5dz01p66ygghk69mldsfbxs81d52jqfnx8f"))))
|
||||
(base32 "0m4ckp2ljnkws0bhg1wxlhqdln8kq33qg00qmhhik8ihh02sywnl"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'install 'enter-lisp-directory
|
||||
(lambda _
|
||||
(chdir "lisp")))
|
||||
(add-before 'install 'make-info
|
||||
(lambda _
|
||||
(invoke "makeinfo" "--no-split"
|
||||
"-o" "with-editor.info" "with-editor.texi"))))))
|
||||
(with-directory-excursion "../docs"
|
||||
(invoke "makeinfo" "--no-split"
|
||||
"-o" "with-editor.info" "with-editor.texi")
|
||||
(install-file "with-editor.info" "../lisp")))))))
|
||||
(native-inputs
|
||||
(list texinfo))
|
||||
(propagated-inputs
|
||||
|
|
Loading…
Reference in a new issue