nixpkgs/pkgs/applications/networking/p2p/qbittorrent/default.nix

50 lines
1.4 KiB
Nix
Raw Normal View History

2015-02-15 23:43:39 +01:00
{ stdenv, fetchurl, pkgconfig, which
, boost, libtorrentRasterbar, qtbase, qttools
2015-02-15 23:43:39 +01:00
, debugSupport ? false # Debugging
, guiSupport ? true, dbus_libs ? null # GUI (disable to run headless)
, webuiSupport ? true # WebUI
}:
2013-11-08 09:59:28 +01:00
2015-02-15 23:43:39 +01:00
assert guiSupport -> (dbus_libs != null);
with stdenv.lib;
2013-11-08 09:59:28 +01:00
stdenv.mkDerivation rec {
2015-02-15 23:43:39 +01:00
name = "qbittorrent-${version}";
2017-07-03 21:36:55 +02:00
version = "3.3.13";
2013-11-08 09:59:28 +01:00
src = fetchurl {
url = "mirror://sourceforge/qbittorrent/${name}.tar.xz";
2017-07-03 21:36:55 +02:00
sha256 = "13a6rv4f4xgbjh6nai7fnqb04rh7i2kjpp7y2z5j1wyy4x8pncc4";
2013-11-08 09:59:28 +01:00
};
nativeBuildInputs = [ pkgconfig which ];
2015-02-15 23:43:39 +01:00
2017-06-02 17:40:19 +02:00
buildInputs = [ boost libtorrentRasterbar qtbase qttools ]
2015-02-15 23:43:39 +01:00
++ optional guiSupport dbus_libs;
2014-11-01 03:30:37 +01:00
preConfigure = ''
export QT_QMAKE=$(dirname "$QMAKE")
'';
2014-11-01 03:30:37 +01:00
configureFlags = [
"--with-boost-libdir=${boost.out}/lib"
2015-08-13 04:02:30 +02:00
"--with-boost=${boost.dev}"
2015-02-15 23:43:39 +01:00
(if guiSupport then "" else "--disable-gui")
(if webuiSupport then "" else "--disable-webui")
] ++ optional debugSupport "--enable-debug";
2013-11-08 09:59:28 +01:00
# The lrelease binary is named lrelease instead of lrelease-qt4
patches = [ ./fix-lrelease.patch ];
# https://github.com/qbittorrent/qBittorrent/issues/1992
enableParallelBuilding = false;
2013-11-08 09:59:28 +01:00
2015-02-15 23:43:39 +01:00
meta = {
2013-11-08 09:59:28 +01:00
description = "Free Software alternative to µtorrent";
2015-02-15 23:43:39 +01:00
homepage = http://www.qbittorrent.org/;
license = licenses.gpl2;
platforms = platforms.linux;
2017-02-16 14:10:07 +01:00
maintainers = with maintainers; [ viric ];
2013-11-08 09:59:28 +01:00
};
}