mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add emacs-mc-extras.
* gnu/packages/emacs-xyz.scm (emacs-mc-extras): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
594d60a3f4
commit
d052e51b57
1 changed files with 26 additions and 0 deletions
|
@ -3410,6 +3410,32 @@ (define-public emacs-multiple-cursors
|
||||||
simultaneous cursors.")
|
simultaneous cursors.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-mc-extras
|
||||||
|
(let ((commit "053abc52181b8718559d7361a587bbb795faf164")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "emacs-mc-extras")
|
||||||
|
(version (git-version "1.2.4" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/knu/mc-extras.el.git")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "16y48qrd20m20vypvys5jp4v4gc1qrqlkm75s1pk1r68i9zrw481"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("emacs-multiple-cursors" ,emacs-multiple-cursors)))
|
||||||
|
(home-page "https://github.com/knu/mc-extras.el")
|
||||||
|
(synopsis "Extra functions for manipulating multiple cursors")
|
||||||
|
(description
|
||||||
|
"This package provides additional functions for
|
||||||
|
@code{multiple-cursors}, including functions for marking s-expressions,
|
||||||
|
comparing characters, removing cursors, and more.")
|
||||||
|
(license license:bsd-2))))
|
||||||
|
|
||||||
(define-public emacs-typo
|
(define-public emacs-typo
|
||||||
(package
|
(package
|
||||||
(name "emacs-typo")
|
(name "emacs-typo")
|
||||||
|
|
Loading…
Reference in a new issue