2018-06-13 19:16:51 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, cmake
|
2017-02-26 12:49:15 +00:00
|
|
|
, extra-cmake-modules, qtbase, qtscript
|
2017-09-05 10:26:52 +00:00
|
|
|
, karchive, kcrash, kdnssd, ki18n, kio, knotifications, knotifyconfig
|
|
|
|
, kdoctools, kross, kcmutils, kwindowsystem
|
2017-07-03 07:44:37 +00:00
|
|
|
, libktorrent, boost, taglib, libgcrypt, kplotting
|
2017-02-18 19:24:52 +00:00
|
|
|
}:
|
2010-09-13 14:23:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-09-05 10:26:52 +00:00
|
|
|
name = "ktorrent-${version}";
|
|
|
|
version = "${libktorrent.mainVersion}.0";
|
2010-09-13 14:23:02 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-09-05 10:26:52 +00:00
|
|
|
url = "mirror://kde/stable/ktorrent/${libktorrent.mainVersion}/${name}.tar.xz";
|
|
|
|
sha256 = "18w6qh09k84qpzaxxb76a4g59k4mx5wk897vqp1wwv80g0pqhmrw";
|
2010-09-13 14:23:02 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 10:26:52 +00:00
|
|
|
nativeBuildInputs = [ cmake kdoctools extra-cmake-modules ];
|
2010-09-13 14:23:02 +00:00
|
|
|
|
2017-09-05 10:26:52 +00:00
|
|
|
buildInputs = [
|
|
|
|
qtbase qtscript
|
|
|
|
karchive kcrash kdnssd ki18n kio knotifications knotifyconfig kross kcmutils kwindowsystem
|
|
|
|
libktorrent taglib libgcrypt kplotting
|
|
|
|
];
|
2011-08-06 14:28:15 +00:00
|
|
|
|
2018-06-13 19:16:51 +00:00
|
|
|
patches = [
|
|
|
|
# Fix build with CMake 3.11
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://cgit.kde.org/ktorrent.git/patch/?id=672c5076de7e3a526d9bdbb484a69e9386bc49f8";
|
|
|
|
sha256 = "1cn4rnbhadrsxqx50fawpd747azskavbjraygr6s11rh1wbfrxid";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2011-08-06 14:28:15 +00:00
|
|
|
enableParallelBuilding = true;
|
2010-09-13 14:23:02 +00:00
|
|
|
|
2017-09-05 10:26:52 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-09-13 14:23:02 +00:00
|
|
|
description = "KDE integrated BtTorrent client";
|
2017-09-05 10:26:52 +00:00
|
|
|
homepage = https://www.kde.org/applications/internet/ktorrent/;
|
2017-09-07 02:41:51 +00:00
|
|
|
license = licenses.gpl2;
|
2017-09-05 10:26:52 +00:00
|
|
|
maintainers = with maintainers; [ eelco ];
|
|
|
|
platforms = platforms.linux;
|
2010-09-13 14:23:02 +00:00
|
|
|
};
|
|
|
|
}
|