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 bfb049f51c gnu: Add book-emacs-lisp-elements.
bfb049f51c is described below
commit bfb049f51cb21981fdf3773558c927008adf23c5
Author: Lee Thompson <[email protected]>
AuthorDate: Wed Nov 12 19:45:08 2025 +0000
gnu: Add book-emacs-lisp-elements.
* gnu/packages/books.scm (book-emacs-lisp-elements): New variable.
Change-Id: Ibec232a083974a915f05cc0e005eaf1e8a631c39
Signed-off-by: Cayetano Santos <[email protected]>
---
gnu/packages/books.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/books.scm b/gnu/packages/books.scm
index 75ef1620cf..6738128ecb 100644
--- a/gnu/packages/books.scm
+++ b/gnu/packages/books.scm
@@ -32,6 +32,7 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system cmake)
#:use-module (guix build-system copy)
+ #:use-module (guix build-system emacs)
#:use-module (guix build-system gnu)
#:use-module (guix deprecation)
#:use-module (guix download)
@@ -333,3 +334,40 @@ display bibles, commentaries, dictionaries, and other
texts and images.
Xiphos includes features such as searching, biblesync, bookmarks,
parallel study, and original language study.")
(license license:gpl2+)))
+
+(define-public book-emacs-lisp-elements
+ (package
+ (name "book-emacs-lisp-elements")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/protesilaos/emacs-lisp-elements")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1fwbj2hrb33blknxd3qrm7jjs2ixrbyc77788i37qvn6v1y741ry"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list
+ #:tests? #f ;No code —no tests
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'install 'makeinfo
+ (lambda _
+ (emacs-makeinfo "elispelem.org"))))))
+ (native-inputs (list texinfo))
+ (home-page "https://protesilaos.com/emacs/emacs-lisp-elements")
+ (synopsis "Overview of the Emacs Lisp programming language")
+ (description
+ "Emacs Lisp Elements is a book written by Protesilaos Stavrou, providing
a big
+picture view of the @acronym{Elisp, Emacs Lisp} programming language by
+combining prose with code. This book aims to provide an idea of how Elisp
+works by showing some of the main concepts and patterns encountered in
+everyday Elisp code.
+
+This book is not intended as a replacement for the built-in Emacs Lisp
+Reference Manual, but instead to give readers enough information to reason
+about Elisp code.")
+ (license license:fdl1.3+)))