[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: emacs-guix: Use new style (partly).
From: |
guix-commits |
Subject: |
branch master updated: gnu: emacs-guix: Use new style (partly). |
Date: |
Tue, 14 Dec 2021 13:38:39 -0500 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6c8cd5f gnu: emacs-guix: Use new style (partly).
6c8cd5f is described below
commit 6c8cd5faa8893d41426da30b5c9ca9798c8111d1
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue Dec 14 19:38:13 2021 +0100
gnu: emacs-guix: Use new style (partly).
* gnu/packages/emacs-xyz.scm (emacs-guix)[arguments]<#:phase>: Remove
trailing
[native-inputs, propagated-inputs]: Remove labels.
---
gnu/packages/emacs-xyz.scm | 23 +++++++++--------------
1 file changed, 9 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index deb95d2..36c4ca6 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3507,26 +3507,21 @@ type, for example: packages, buffers, files, etc.")
(add-after 'unpack 'expand-load-path
(lambda _
((assoc-ref emacs:%standard-phases 'expand-load-path)
- #:prepend-source? #f)
- #t)))))
+ #:prepend-source? #f))))))
(native-inputs
- `(("autoconf" ,autoconf)
- ("automake" ,automake)
- ("pkg-config" ,pkg-config)
- ("texinfo" ,texinfo)
- ("emacs" ,emacs-minimal)))
+ (list autoconf automake emacs-minimal pkg-config texinfo))
(inputs
`(("guile"
,@(assoc-ref (package-native-inputs guix) "guile"))
("guix" ,guix)))
(propagated-inputs
- `(("geiser" ,emacs-geiser)
- ("geiser-guile" ,emacs-geiser-guile)
- ("guile-gcrypt" ,guile-gcrypt)
- ("dash" ,emacs-dash)
- ("bui" ,emacs-bui)
- ("edit-indirect" ,emacs-edit-indirect)
- ("magit-popup" ,emacs-magit-popup)))
+ (list emacs-bui
+ emacs-dash
+ emacs-edit-indirect
+ emacs-geiser
+ emacs-geiser-guile
+ emacs-magit-popup
+ guile-gcrypt))
(home-page "https://emacs-guix.gitlab.io/website/")
(synopsis "Emacs interface for GNU Guix")
(description
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: emacs-guix: Use new style (partly).,
guix-commits <=