diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2026-04-03 10:29:59 +0200 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-04-03 10:50:02 +0200 |
| commit | 7b4546404876966c79a57d1afabdd66ec8a10fde (patch) | |
| tree | af8ec89dbc5adaa7a369bc9e6536c95fd6aeb503 /gnu | |
| parent | 853077feed1699f6a27e7a709cd35f2ed4ac4939 (diff) | |
gnu: emacs-xelb: Simplify package.
During update to 0.21 in 1beeaed3716dffc2028c45756641649d9f73cb45 the
’emacs let binding was left behind.
* gnu/packages/emacs-xyz.scm (emacs-xelb)[arguments]: Clean up
’regenerate-el-files #:phase.
Change-Id: I8b4180e658eaefecd616bdfff2e3b619bf72aa07
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index b73ca284887..60a2cc941f9 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -24488,11 +24488,9 @@ conflicts.") (lambda* (#:key inputs native-inputs #:allow-other-keys) (substitute* "xelb-gen" (("/usr/bin/env") (which "env"))) - (let ((xcb-proto #$(this-package-native-input "xcb-proto")) - (emacs (search-input-file (or native-inputs inputs) - "/bin/emacs"))) - (invoke "make" - (format #f "PROTO_PATH=~a/share/xcb" xcb-proto)))))))) + (invoke "make" + (format #f "PROTO_PATH=~a/share/xcb" + #$(this-package-native-input "xcb-proto")))))))) (native-inputs (list xcb-proto)) (propagated-inputs (list emacs-compat)) (home-page "https://github.com/emacs-exwm/xelb") |
