guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/05: gnu: emacs-elpher: Improve package style.


From: guix-commits
Subject: 05/05: gnu: emacs-elpher: Improve package style.
Date: Sun, 6 Feb 2022 18:03:03 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit 41e7b0377b29018bec422b58682055458e15f27c
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon Feb 7 00:01:18 2022 +0100

    gnu: emacs-elpher: Improve package style.
    
    * gnu/packages/emacs-xyz.scm (emacs-elpher)[source]<url>: Remove trailing
    .GIT.
    [arguments]<#:emacs>: Build with EMACS-NO-X.
    <#:phases>: Use G-expressions.
---
 gnu/packages/emacs-xyz.scm | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5e14321165..815b9eb559 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -26376,20 +26376,22 @@ it forcibly
      (origin
        (method git-fetch)
        (uri (git-reference
-             (url "git://thelambdalab.xyz/elpher.git")
+             (url "git://thelambdalab.xyz/elpher")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
         (base32 "121hkssy6c15gdr76k3fmdpk82354hk597gvkap6dc9y5j5968mk"))))
     (build-system emacs-build-system)
+    (arguments
+     (list
+      #:emacs emacs-no-x                ;need libxml support
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-before 'install 'build-doc
+            (lambda _
+              (invoke "makeinfo" "elpher.texi"))))))
     (native-inputs
      (list texinfo))
-    (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-before 'install 'build-doc
-           (lambda _
-             (invoke "makeinfo" "elpher.texi"))))))
     (home-page "gopher://thelambdalab.xyz/1/projects/elpher/";)
     (synopsis "Gopher and gemini client for Emacs")
     (description "Elpher is a full-featured gopher and gemini client for



reply via email to

[Prev in Thread] Current Thread [Next in Thread]