mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add emacs-auto-sudoedit.
* gnu/packages/emacs-xyz.scm (emacs-auto-sudoedit): New variable.
This commit is contained in:
parent
c5b6a67e5a
commit
be14566681
1 changed files with 23 additions and 0 deletions
|
@ -1516,6 +1516,29 @@ (define-public emacs-ace-link
|
|||
letter to each link using avy.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-auto-sudoedit
|
||||
(package
|
||||
(name "emacs-auto-sudoedit")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/ncaq/auto-sudoedit.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "10p0hc95j382km8655pqld9wxg10j1f36czzppkdd6a55cxarv9f"))))
|
||||
(propagated-inputs
|
||||
`(("emacs-f" ,emacs-f)))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/ncaq/auto-sudoedit")
|
||||
(synopsis "Automatically re-open read-only files with sudo")
|
||||
(description
|
||||
"This package automatically reopens a file or directory with
|
||||
@command{sudo} if it cannot write to it.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public emacs-bbdb
|
||||
(package
|
||||
(name "emacs-bbdb")
|
||||
|
|
Loading…
Reference in a new issue