mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add emacs-puni.
* gnu/packages/emacs-xyz.scm (emacs-puni): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
4235c6ee92
commit
c0139a595b
1 changed files with 26 additions and 0 deletions
|
@ -633,6 +633,32 @@ (define-public emacs-paredit
|
|||
when typing parentheses directly or commenting out code line by line.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-puni
|
||||
;; No tagged release upstream
|
||||
(let ((commit "ed4a863460329a3019c286ff382e2ddc0ffdc9d7")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-puni")
|
||||
(version (git-version "0" revision commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/AmaiKinono/puni")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"14lcqf0qdkq2rklx12v12qpgfahz2bpqmnl3bzcz5myawgjjcphd"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs (list emacs-with-editor))
|
||||
(home-page "https://github.com/AmaiKinono/puni")
|
||||
(synopsis "Emacs minor mode for structured editing")
|
||||
(description
|
||||
"Puni is an Emacs minor mode for structured editing: soft deletion,
|
||||
expression navigating and manipulating. It supports many major modes
|
||||
out of the box.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-project
|
||||
(package
|
||||
(name "emacs-project")
|
||||
|
|
Loading…
Reference in a new issue