janneke pushed a commit to branch core-packages-team
in repository guix.
commit 380076a2c8345171a61a5eebb3eaf2c5627d4347
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Fri Jan 3 19:56:53 2025 +0100
gnu: aria2: Fix build.
* gnu/packages/bittorrent.scm (aria2)[arguments]: Add phase
"patch-configure".
Change-Id: I205ebc7017e266341863a2b84c93f3d94ab4b262
---
gnu/packages/bittorrent.scm | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
index e946660ab7..200f9172c7 100644
--- a/gnu/packages/bittorrent.scm
+++ b/gnu/packages/bittorrent.scm
@@ -20,6 +20,7 @@
;;; Copyright © 2023 Clément Lassieur <[email protected]>
;;; Copyright © 2024 Noisytoot <[email protected]>
;;; Copyright © 2024 Zheng Junjie <[email protected]>
+;;; Copyright © 2025 Janneke Nieuwenhuizen <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -318,6 +319,10 @@ Transmission BitTorrent daemon.")
#$output "/etc/bash_completion.d/"))
#:phases
#~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-configure
+ (lambda _
+ (substitute* "configure.ac"
+ (("0[.]18") "0.19.6"))))
(add-after 'unpack 'delete-socket-tests
(lambda _
(substitute* "test/LpdMessageDispatcherTest.cc"