mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
48 lines
1.5 KiB
Nix
48 lines
1.5 KiB
Nix
{ mkDerivation, lib, fetchFromGitHub, pkgconfig
|
|
, boost, libtorrentRasterbar, qtbase, qttools, qtsvg
|
|
, debugSupport ? false # Debugging
|
|
, guiSupport ? true, dbus ? null # GUI (disable to run headless)
|
|
, webuiSupport ? true # WebUI
|
|
}:
|
|
|
|
assert guiSupport -> (dbus != null);
|
|
with lib;
|
|
|
|
mkDerivation rec {
|
|
pname = "qbittorrent";
|
|
version = "4.3.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "qbittorrent";
|
|
repo = "qbittorrent";
|
|
rev = "release-${version}";
|
|
sha256 = "068sf24mjvc2idimgpzvf7gjk8n9xrr3qqlqfx5j3j598ckm3yfp";
|
|
};
|
|
|
|
# NOTE: 2018-05-31: CMake is working but it is not officially supported
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ boost libtorrentRasterbar qtbase qttools qtsvg ]
|
|
++ optional guiSupport dbus; # D(esktop)-Bus depends on GUI support
|
|
|
|
# Otherwise qm_gen.pri assumes lrelease-qt5, which does not exist.
|
|
QMAKE_LRELEASE = "lrelease";
|
|
|
|
configureFlags = [
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
"--with-boost=${boost.dev}" ]
|
|
++ optionals (!guiSupport) [ "--disable-gui" "--enable-systemd" ] # Also place qbittorrent-nox systemd service files
|
|
++ optional (!webuiSupport) "--disable-webui"
|
|
++ optional debugSupport "--enable-debug";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Featureful free software BitTorrent client";
|
|
homepage = "https://www.qbittorrent.org/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ Anton-Latukha ];
|
|
};
|
|
}
|