mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
gnu: emacs-minimal: Reduce to minimal inputs.
This partly reverts dbcba75c0e
. In that commit,
emacs-minimal gained a few inputs that weren't actually used as native
compilation is disabled.
Discovered by djeis in IRC, see also
<http://logs.guix.gnu.org/guix/2022-10-02.log#170047>.
* gnu/packages/emacs.scm (emacs-minimal)[inputs]: Remove ld-wrapper, binutils,
glibc, libgccjit, and zlib.
[arguments]<#:phases>: Delete ‘set-libgccjit-path’.
This commit is contained in:
parent
e0546a11f0
commit
407f017663
1 changed files with 2 additions and 3 deletions
|
@ -443,11 +443,10 @@ (define-public emacs-minimal
|
|||
((#:modules _) (%emacs-modules build-system))
|
||||
((#:phases phases)
|
||||
#~(modify-phases #$phases
|
||||
(delete 'set-libgccjit-path)
|
||||
(delete 'restore-emacs-pdmp)
|
||||
(delete 'strip-double-wrap)))))
|
||||
(inputs (list ncurses coreutils gzip
|
||||
(make-ld-wrapper "ld-wrapper" #:binutils binutils)
|
||||
binutils glibc libgccjit zlib))
|
||||
(inputs (list ncurses coreutils gzip))
|
||||
(native-inputs (list autoconf pkg-config))))
|
||||
|
||||
(define-public emacs-xwidgets
|
||||
|
|
Loading…
Reference in a new issue