mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-02 09:28:57 -05:00
gnu: Add emacs-multifiles.
* gnu/packages/emacs-xyz.scm (emacs-multifiles): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
92894e64a0
commit
1fe75f8397
1 changed files with 27 additions and 0 deletions
|
@ -5781,6 +5781,33 @@ (define-public emacs-multiple-cursors
|
||||||
simultaneous cursors.")
|
simultaneous cursors.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-multifiles
|
||||||
|
;; There is no tag and no "Version:" keyword. Using the latest release
|
||||||
|
;; instead.
|
||||||
|
(let ((commit "dddfe64b8e1c1cd1f9ccc1f03405477fc0d53897")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "emacs-multifiles")
|
||||||
|
(version (git-version "0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/magnars/multifiles.el")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "065l04ylplng1vgykkbn2vnkcs3sn1k2cikx1ha2q8wmgx6bkvai"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("emacs-dash" ,emacs-dash)))
|
||||||
|
(home-page "https://github.com/magnars/multifiles.el")
|
||||||
|
(synopsis "Edit multiple files in a single Emacs buffer")
|
||||||
|
(description
|
||||||
|
"This package allows one to view and edit parts of multiple files in
|
||||||
|
one Emacs buffer.")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-mc-extras
|
(define-public emacs-mc-extras
|
||||||
(let ((commit "053abc52181b8718559d7361a587bbb795faf164")
|
(let ((commit "053abc52181b8718559d7361a587bbb795faf164")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
Loading…
Reference in a new issue