about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p
diff options
context:
space:
mode:
authorAnton-Latukha <anton.latukha@gmail.com>2020-12-12 13:10:31 +0200
committerMilan <me@pbb.lc>2020-12-19 18:40:07 +0100
commite569d6b98c475f8a30822993aa07577fc8e32bcb (patch)
tree73940ea291e55e860646f5b54acc3383a2b18e88 /pkgs/applications/networking/p2p
parent9e2c96b26b19b2dd2465e8a0e04f8681753d9942 (diff)
downloadnixlib-e569d6b98c475f8a30822993aa07577fc8e32bcb.tar
nixlib-e569d6b98c475f8a30822993aa07577fc8e32bcb.tar.gz
nixlib-e569d6b98c475f8a30822993aa07577fc8e32bcb.tar.bz2
nixlib-e569d6b98c475f8a30822993aa07577fc8e32bcb.tar.lz
nixlib-e569d6b98c475f8a30822993aa07577fc8e32bcb.tar.xz
nixlib-e569d6b98c475f8a30822993aa07577fc8e32bcb.tar.zst
nixlib-e569d6b98c475f8a30822993aa07577fc8e32bcb.zip
qbittorrent: clean-up
Diffstat (limited to 'pkgs/applications/networking/p2p')
-rw-r--r--pkgs/applications/networking/p2p/qbittorrent/default.nix7
1 files 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 ]