From e569d6b98c475f8a30822993aa07577fc8e32bcb Mon Sep 17 00:00:00 2001 From: Anton-Latukha Date: Sat, 12 Dec 2020 13:10:31 +0200 Subject: [PATCH] qbittorrent: clean-up --- pkgs/applications/networking/p2p/qbittorrent/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix index 1550bfeb94d9..5efd6910043f 100644 --- a/pkgs/applications/networking/p2p/qbittorrent/default.nix +++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix @@ -1,13 +1,13 @@ { mkDerivation, lib, fetchFromGitHub, pkgconfig , boost, libtorrentRasterbar, qtbase, qttools, qtsvg -, debugSupport ? false # Debugging -, guiSupport ? true, dbus ? null # GUI (disable to run headless) +, debugSupport ? false +, guiSupport ? true, dbus ? null # GUI OR headless , webuiSupport ? true # WebUI }: assert guiSupport -> (dbus != null); -with lib; +with lib; mkDerivation rec { pname = "qbittorrent"; version = "4.3.1"; @@ -19,7 +19,6 @@ mkDerivation rec { sha256 = "17ih00q7idrpl3b2vgh4smva6lazs5jw06pblriscn1lrwdvrc38"; }; - # NOTE: 2018-05-31: CMake is working but it is not officially supported nativeBuildInputs = [ pkgconfig ]; buildInputs = [ boost libtorrentRasterbar qtbase qttools qtsvg ]