This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new b27e023e87 gnu: Add emacs-quiet
b27e023e87 is described below
commit b27e023e87a41b41b57a0b788a01e7bb6928cada
Author: nik gaffney <[email protected]>
AuthorDate: Fri Aug 22 11:46:01 2025 +0200
gnu: Add emacs-quiet
Change-Id: I065bc94c6dd9977368852423399b4b055039ef31
Signed-off-by: jgart <[email protected]>
---
gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index f2394115d1..d90d419bd7 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -161,6 +161,7 @@
;;; Copyright © 2025 Anderson Torres <[email protected]>
;;; Copyright © 2025 Jake Forster <[email protected]>
;;; Copyright @ 2025 Andrew Wong <[email protected]>
+;;; Copyright @ 2025 Nik Gaffney <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -41419,6 +41420,31 @@ supports generation of phonetic and numeric
passwords.")
text into a QR Code and show it in a separate buffer.")
(license license:gpl3+)))
+(define-public emacs-quiet
+ (package
+ (name "emacs-quiet")
+ (version "20230530.859")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/zzkt/quiet.git")
+ (commit
+ "985b56606517971330c08686c49a8d06db763f3c")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0141z6acdffy96ghrwghzgqnv3mypvfkgci413dfaym4z80iwqdz"))))
+ (build-system emacs-build-system)
+ (arguments (list #:tests? #f))
+ (home-page "https://codeberg.org/zzkt/quiet")
+ (synopsis "Disconnect from the online world for a while")
+ (description
+ "Simple package to disconnect from the online world for a while,
+possibly reconnecting later. Any interruptions or distractions which occur
+once the command is run are guaranteed to be local.")
+ (license license:gpl3+)))
+
(define-public emacs-csv
(package
(name "emacs-csv")