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:
Stefan Reichör 2021-03-04 20:57:42 +01:00 committed by Nicolas Goaziou
parent 92894e64a0
commit 1fe75f8397
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -5781,6 +5781,33 @@ (define-public emacs-multiple-cursors
simultaneous cursors.")
(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
(let ((commit "053abc52181b8718559d7361a587bbb795faf164")
(revision "1"))