diff options
-rw-r--r-- | gnu/packages/bittorrent.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm index e946660ab7..56f6512151 100644 --- a/gnu/packages/bittorrent.scm +++ b/gnu/packages/bittorrent.scm @@ -20,6 +20,7 @@ ;;; Copyright © 2023 Clément Lassieur <clement@lassieur.org> ;;; Copyright © 2024 Noisytoot <ron@noisytoot.org> ;;; Copyright © 2024 Zheng Junjie <873216071@qq.com> +;;; Copyright © 2025 Tomas Volf <~@wolfsden.cz> ;;; ;;; This file is part of GNU Guix. ;;; @@ -628,6 +629,13 @@ the following features: `(#:tests? #f #:phases (modify-phases %standard-phases + (add-after 'unpack 'fix-deluge-console + (lambda _ + ;; Backport patch for: https://dev.deluge-torrent.org/ticket/3582 + ;; Should be removed for release 2.1.1. + (substitute* "deluge/ui/console/__init__.py" + ((" return Console\\(\\).start\\(\\)") + " Console().start()")))) (add-after 'install 'wrap (lambda* (#:key native-inputs inputs outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out")) |