mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add emacs-simple-httpd.
* gnu/packages/emacs.scm (emacs-simple-httpd): New variable.
This commit is contained in:
parent
a46e3c0dc6
commit
1f8a951bf4
1 changed files with 21 additions and 0 deletions
|
@ -1438,6 +1438,27 @@ (define-public emacs-page-break-lines
|
|||
as horizontal rules.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-simple-httpd
|
||||
(package
|
||||
(name "emacs-simple-httpd")
|
||||
(version "1.4.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/skeeto/emacs-web-server/"
|
||||
"archive/" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"01r7h3imnj4qx1m53a2wjafvbylcyz5f9r2rg2cs7ky3chlg220r"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/skeeto/emacs-http-server")
|
||||
(synopsis "HTTP server in pure Emacs Lisp")
|
||||
(description
|
||||
"This package provides a simple HTTP server written in Emacs Lisp to
|
||||
serve files and directory listings.")
|
||||
(license license:unlicense)))
|
||||
|
||||
(define-public emacs-ob-ipython
|
||||
(package
|
||||
(name "emacs-ob-ipython")
|
||||
|
|
Loading…
Reference in a new issue