mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
build-system/emacs: Provide allowed and disallowed references.
* guix/build-system/emacs.scm (emacs-build): Pass #:allowed-references and Change-Id: Ib9a35a7b2115365b96675fb7ca3914b0ae7e67c7 Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
7afea2e9b6
commit
cea0ecb60b
1 changed files with 5 additions and 1 deletions
|
@ -95,7 +95,9 @@
|
||||||
(imported-modules %emacs-build-system-modules)
|
(imported-modules %emacs-build-system-modules)
|
||||||
(modules '((guix build emacs-build-system)
|
(modules '((guix build emacs-build-system)
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
(guix build emacs-utils))))
|
(guix build emacs-utils)))
|
||||||
|
allowed-references
|
||||||
|
disallowed-references)
|
||||||
"Build SOURCE using EMACS, and with INPUTS."
|
"Build SOURCE using EMACS, and with INPUTS."
|
||||||
(define builder
|
(define builder
|
||||||
(with-imported-modules imported-modules
|
(with-imported-modules imported-modules
|
||||||
|
@ -120,6 +122,8 @@
|
||||||
system #:graft? #f)))
|
system #:graft? #f)))
|
||||||
(gexp->derivation name builder
|
(gexp->derivation name builder
|
||||||
#:system system
|
#:system system
|
||||||
|
#:allowed-references allowed-references
|
||||||
|
#:disallowed-references disallowed-references
|
||||||
#:guile-for-build guile)))
|
#:guile-for-build guile)))
|
||||||
|
|
||||||
(define emacs-build-system
|
(define emacs-build-system
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue