guix-commits
[Top][All Lists]
Advanced

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

02/08: gnu: emacs-deadgrep: Improve package style.


From: guix-commits
Subject: 02/08: gnu: emacs-deadgrep: Improve package style.
Date: Sun, 6 Nov 2022 16:47:00 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit ab6fb3022debcb523cce5ae762ea58ca01f4c687
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sun Nov 6 22:32:32 2022 +0100

    gnu: emacs-deadgrep: Improve package style.
    
    * gnu/packages/emacs-xyz.scm (emacs-deadgrep)[arguments]: Use G-expressions.
    <#:phases>: Use SEARCH-INPUT-FILE instead of ASSOC-REF.
---
 gnu/packages/emacs-xyz.scm | 27 +++++++++++++--------------
 1 file changed, 13 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ab5f08a5db..5c6abdbcd2 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -23875,22 +23875,21 @@ accept and reject GitHub pull requests.")
         (base32
          "0bwf8gsqw7hsmacqd34piwgv066ijfclmxaigkvhvpac0lpsmi79"))))
     (build-system emacs-build-system)
-    (inputs (list ripgrep))
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'configure
+            (lambda* (#:key inputs #:allow-other-keys)
+              (let ((ripgrep (search-input-file inputs "/bin/rg")))
+                ;; Specify the absolute file name of rg so that everything
+                ;; works out-of-the-box.
+                (emacs-substitute-variables "deadgrep.el"
+                  ("deadgrep-executable" ripgrep))))))))
+    (inputs
+     (list ripgrep))
     (propagated-inputs
      (list emacs-dash emacs-s emacs-spinner))
-    (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'configure
-           (lambda* (#:key inputs #:allow-other-keys)
-             (let ((ripgrep (assoc-ref inputs "ripgrep")))
-               ;; .el is read-only in git.
-               (make-file-writable "deadgrep.el")
-               ;; Specify the absolute file names of rg so that everything
-               ;; works out-of-the-box.
-               (emacs-substitute-variables "deadgrep.el"
-                 ("deadgrep-executable"
-                  (string-append ripgrep "/bin/rg")))))))))
     (home-page "https://github.com/Wilfred/deadgrep";)
     (synopsis "Frontend for @code{ripgrep}")
     (description "This package provides an Emacs interface for performing



reply via email to

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