guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 575cfb82d8f390f66d0a1ce2fdaa44cbb8953d00
Author: Cayetano Santos <[email protected]>
AuthorDate: Tue Sep 22 15:36:20 2026 +0200
gnu: emacs-simple-httpd: Update to 1.7.
* gnu/packages/emacs-xyz.scm (emacs-simple-httpd): Update to 1.7.
[propagated-inputs]: Add emacs-compat.
[arguments]: Set #:test-command.
---
gnu/packages/emacs-xyz.scm | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 94019ed011f..b3c047ea607 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -10711,7 +10711,7 @@ as horizontal rules.")
(define-public emacs-simple-httpd
(package
(name "emacs-simple-httpd")
- (version "1.6")
+ (version "1.7")
(source
(origin
(method git-fetch)
@@ -10720,8 +10720,15 @@ as horizontal rules.")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "0cbidjfrrwwpj73248bw8mb1fbhh4md9awhq4x6wmjl6lkfwr8pj"))))
+ (base32 "1s00xpp0gqnyiaq22ybixf59gy71fma774nvkh6ad4v40bdvhh4c"))))
(build-system emacs-build-system)
+ (arguments
+ (list
+ #:test-command
+ #~(list "emacs" "--batch"
+ "-l" "simple-httpd-test.el"
+ "-f" "ert-run-tests-batch-and-exit")))
+ (propagated-inputs (list emacs-compat))
(home-page "https://github.com/skeeto/emacs-web-server")
(synopsis "HTTP server in pure Emacs Lisp")
(description