From dd0b4c69d165c1b0dddac92fe4001331ae723076 Mon Sep 17 00:00:00 2001 From: Hilton Chain Date: Fri, 25 Nov 2022 14:00:13 +0800 Subject: [PATCH] rosenthal: Add qbittorrent-enhanced-edition-nox. * rosenthal/packages/bittorrent.scm (qbittorrent-enhanced-edition-nox): New variable. --- rosenthal/packages/bittorrent.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/rosenthal/packages/bittorrent.scm b/rosenthal/packages/bittorrent.scm index bf5c700..a18c965 100644 --- a/rosenthal/packages/bittorrent.scm +++ b/rosenthal/packages/bittorrent.scm @@ -51,3 +51,17 @@ the following features: @item Auto Ban BitTorrent Media Player Peer Option (Default: OFF) @item Peer whitelist/blacklist @end itemize\n")))) + +(define-public qbittorrent-enhanced-edition-nox + (let ((base qbittorrent-enhanced-edition)) + (package + (inherit base) + (name "qbittorrent-enhanced-edition-nox") + (arguments + (substitute-keyword-arguments (package-arguments base) + ((#:configure-flags configure-flags) + #~(append #$configure-flags + (list "-DGUI=OFF"))))) + (inputs + (modify-inputs (package-inputs base) + (delete "qtsvg-5"))))))