guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 74f7766b0c80284133c6b3afad7aa43759f99bd2
Author: Morgan Smith <[email protected]>
AuthorDate: Wed Feb 11 18:48:03 2026 -0500

    build-system/emacs: Allow #:substitutable? flag.
    
    * guix/build-system/emacs.scm (emacs-build): Pass #:substitutable? flag to
    builder.
    
    Change-Id: I54c40c5ba37344e8115e124fa5bfe25cdff3b169
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 guix/build-system/emacs.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/guix/build-system/emacs.scm b/guix/build-system/emacs.scm
index df38ef4db0..5e34b1b5c6 100644
--- a/guix/build-system/emacs.scm
+++ b/guix/build-system/emacs.scm
@@ -95,6 +95,7 @@
                       (modules '((guix build emacs-build-system)
                                  (guix build utils)
                                  (guix build emacs-utils)))
+                      (substitutable? #t)
                       allowed-references
                       disallowed-references)
   "Build SOURCE using EMACS, and with INPUTS."
@@ -122,6 +123,7 @@
                                                   system #:graft? #f)))
     (gexp->derivation name builder
                       #:system system
+                      #:substitutable? substitutable?
                       #:allowed-references allowed-references
                       #:disallowed-references disallowed-references
                       #:guile-for-build guile)))

Reply via email to