me
/
guix
Archived
1
0
Fork 0

gnu: emacs-orgmdb: Add missing input.

* gnu/packages/emacs-xyz.scm (emacs-orgmdb)[arguments]: Avoid propagating FD.
[inputs]: Add FD.
master
Nicolas Goaziou 2022-09-25 21:05:38 +02:00
parent 1f63c5709c
commit 31593237f6
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 12 additions and 0 deletions

View File

@ -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")