[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/11: gnu: emacs-elfeed: Patch curl executable.
From: |
guix-commits |
Subject: |
01/11: gnu: emacs-elfeed: Patch curl executable. |
Date: |
Thu, 28 Sep 2023 07:37:39 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 2b1ae1cffc6a94935c2501c393ee210c2cf68c16
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Sep 27 15:37:54 2023 +0300
gnu: emacs-elfeed: Patch curl executable.
Reported by bienjensu on IRC.
* gnu/packages/emacs-xyz.scm (emacs-elfeed)[arguments]: Add a phase to
patch a call to the curl binary.
[inputs]: Add curl.
---
gnu/packages/emacs-xyz.scm | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d19f8e9f81..1f2334e409 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13856,7 +13856,16 @@ and tooling.")
(build-system emacs-build-system)
(arguments
`(#:tests? #t
- #:test-command '("make" "test")))
+ #:test-command '("make" "test")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch-program-calls
+ (lambda* (#:key inputs #:allow-other-keys)
+ (emacs-substitute-variables "elfeed-curl.el"
+ ("elfeed-curl-program-name"
+ (search-input-file inputs "/bin/curl"))))))))
+ (inputs
+ (list curl))
(home-page "https://github.com/skeeto/elfeed")
(synopsis "Atom/RSS feed reader for Emacs")
(description
- branch master updated (6fa85076ae -> 3963fa1a46), guix-commits, 2023/09/28
- 01/11: gnu: emacs-elfeed: Patch curl executable.,
guix-commits <=
- 02/11: gnu: openblas-ilp64: Add symbol suffix., guix-commits, 2023/09/28
- 04/11: gnu: julia-arraylayouts: Fix tests., guix-commits, 2023/09/28
- 07/11: gnu: julia-wcslib-jll: Downgrade wcslib version., guix-commits, 2023/09/28
- 09/11: gnu: julia-arraylayouts: Update to 0.8.18., guix-commits, 2023/09/28
- 03/11: gnu: julia: Conditionally use openblas with ILP64 support., guix-commits, 2023/09/28
- 11/11: gnu: julia-arraylayouts: Fix building on more architectures., guix-commits, 2023/09/28
- 08/11: gnu: julia-genericlinearalgebra: Update to 0.3.0., guix-commits, 2023/09/28
- 10/11: gnu: julia-bandedmatrices: Fix compatibility with openblas64., guix-commits, 2023/09/28
- 06/11: gnu: Add wcslib-7.12., guix-commits, 2023/09/28
- 05/11: gnu: julia-scanbyte: Update to 0.4.0., guix-commits, 2023/09/28