mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 01:26:43 +01:00
gnu: emacs-org-cliplink: Improve a phase.
* gnu/packages/emacs-xyz.scm (emacs-org-cliplink)[arguments]<#:phases>: Fix phase name. Clarify substitution done in the phase.
This commit is contained in:
parent
6b915fe58b
commit
98c4f0135c
1 changed files with 4 additions and 4 deletions
|
@ -33525,12 +33525,12 @@ (define-public emacs-org-cliplink
|
|||
#:test-command #~(list "ert-runner")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-geiser-racket-binary
|
||||
(add-after 'unpack 'patch-curl-executable
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "org-cliplink-transport.el"
|
||||
(("curl\")")
|
||||
(string-append (search-input-file inputs "bin/curl")
|
||||
"\")"))))))))
|
||||
(("\\(executable-find \"curl\"\\)")
|
||||
(let ((curl (search-input-file inputs "/bin/curl")))
|
||||
(string-append "\"" curl "\"")))))))))
|
||||
(native-inputs
|
||||
(list emacs-el-mock emacs-ert-runner emacs-undercover))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue