From f53b0d6c95fe10bd678a711dbff865932ea59339 Mon Sep 17 00:00:00 2001 From: Vineet Kumar Date: Thu, 2 Apr 2026 12:03:38 -0400 Subject: saklas: replace transmission with rtorrent --- epistemia/packages/bittorrent.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 epistemia/packages/bittorrent.scm diff --git a/epistemia/packages/bittorrent.scm b/epistemia/packages/bittorrent.scm new file mode 100644 index 0000000..4d4a10a --- /dev/null +++ b/epistemia/packages/bittorrent.scm @@ -0,0 +1,18 @@ +(define-module (epistemia packages bittorrent) + #:use-module (guix gexp) + #:use-module (guix packages) + #:use-module (guix utils) + #:use-module (gnu packages bittorrent) + #:use-module (gnu packages xml)) + +;; upstream rtorrent includes neither xmlrpc-c nor tinyxml2 +;; so, using the scgi socket errors out with other tools +;; tinyxml2 is used instead of xmlrpc-c for working utf8 +(define-public rtorrent-xmlrpc + (package + (inherit rtorrent) + (name "rtorrent-xmlrpc") + (inputs (modify-inputs (package-inputs rtorrent) + (append tinyxml2))) + (arguments + (list #:configure-flags #~'("--with-xmlrpc-tinyxml2"))))) -- cgit v1.2.3