gnu: Add emacs-sudo-edit.

* gnu/packages/emacs-xyz.scm (emacs-sudo-edit): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Brian Leung 2019-04-19 20:59:59 +02:00 committed by Ludovic Courtès
parent d2ca86f308
commit cc1d1fc8b7
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 25 additions and 0 deletions

View File

@ -2848,6 +2848,31 @@ respective @code{*Help*} buffers.")
completion of relevant keywords.")
(license license:expat)))
(define-public emacs-sudo-edit
(let ((commit "cc3d478937b1accd38742bfceba92af02ee9357d")
(version "0.1.0")
(revision "6"))
(package
(name "emacs-sudo-edit")
(version (git-version version revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/nflath/sudo-edit")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1qv58x5j5a3v1s2ylhck1ykbfclq0mbi0gsvaql3nyv8cxazqlwl"))))
(build-system emacs-build-system)
(home-page "https://github.com/nflath/sudo-edit/")
(synopsis "Open files as another user")
(description
"This package allows editing files as another user, including the root
user.")
(license license:gpl3+))))
(define-public emacs-ob-ipython
(package
(name "emacs-ob-ipython")