guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-orgmdb: Add missing input.


From: guix-commits
Subject: branch master updated: gnu: emacs-orgmdb: Add missing input.
Date: Sun, 25 Sep 2022 15:10:05 -0400

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 31593237f6 gnu: emacs-orgmdb: Add missing input.
31593237f6 is described below

commit 31593237f6aa82ce29e0ecf1911e64713e21ddcb
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sun Sep 25 21:05:38 2022 +0200

    gnu: emacs-orgmdb: Add missing input.
    
    * gnu/packages/emacs-xyz.scm (emacs-orgmdb)[arguments]: Avoid propagating 
FD.
    [inputs]: Add FD.
---
 gnu/packages/emacs-xyz.scm | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index eb6879b3b9..788c31bca4 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -6052,6 +6052,18 @@ their original location with another.")
          "1hvxha0ih9jhvwj07l6jnpf2vzhgvb6ii73g49c8saxld61l0frf"))
        (file-name (git-file-name name version))))
     (build-system emacs-build-system)
+    (arguments
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'unpack 'configure
+                 (lambda* (#:key inputs #:allow-other-keys)
+                   (substitute* "orgmdb.el"
+                     (("\"fd ")
+                      (string-append "\""
+                                     (search-input-file inputs "/bin/fd")
+                                     " "))))))))
+    (inputs
+     (list fd))
     (propagated-inputs
      (list emacs-dash emacs-org emacs-s))
     (home-page "https://github.com/isamert/orgmdb.el";)



reply via email to

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