diff options
author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2025-01-03 19:56:53 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:24 +0200 |
commit | a433af42fac6702a4d971580d7c8baa00f961d42 (patch) | |
tree | 911c8a3f2252021b3d77640e8ea584d23d4ec298 | |
parent | 4d16d7fc4be145481ef0c7375ce7187087a31960 (diff) |
gnu: aria2: Fix build.
* gnu/packages/bittorrent.scm (aria2)[arguments]: Add phase "patch-configure".
Change-Id: I205ebc7017e266341863a2b84c93f3d94ab4b262
-rw-r--r-- | gnu/packages/bittorrent.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index 4ff8a65bce..3271d8d890 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -21,6 +21,7 @@ ;;; Copyright © 2024 Noisytoot <ron@noisytoot.org> ;;; Copyright © 2024 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2025 Tomas Volf <~@wolfsden.cz> +;;; Copyright © 2025 Janneke Nieuwenhuizen <janneke@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -327,6 +328,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" |