2009-09-10 23:08:46 +02:00
|
|
|
{stdenv, fetchurl, lib, cmake, qt4, perl, gmp, taglib, boost, gettext,
|
2009-08-15 16:02:49 +02:00
|
|
|
kdelibs, kdepimlibs, kdebase_workspace, automoc4, phonon, qca2}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-10-22 17:41:37 +02:00
|
|
|
name = "ktorrent-3.2.4";
|
2009-08-15 16:02:49 +02:00
|
|
|
src = fetchurl {
|
2009-10-22 17:41:37 +02:00
|
|
|
url = http://ktorrent.org/downloads/3.2.4/ktorrent-3.2.4.tar.bz2;
|
|
|
|
sha256 = "1h06fwjykmk4sxjfsic0a42wfh4wwaa9z6a4470vwi5fyx2apxbn";
|
2009-08-15 16:02:49 +02:00
|
|
|
};
|
|
|
|
includeAllQtDirs=true;
|
|
|
|
CMAKE_PREFIX_PATH=kdepimlibs;
|
|
|
|
cmakeFlags = "-DTASKMANAGER_INCLUDE_DIR=${kdebase_workspace}/include";
|
|
|
|
buildInputs = [ cmake qt4 perl gmp taglib boost gettext stdenv.gcc.libc
|
|
|
|
kdelibs kdepimlibs kdebase_workspace automoc4 phonon qca2 ];
|
2009-09-10 23:08:46 +02:00
|
|
|
meta = {
|
|
|
|
description = "KDE integrated BitTorrent client";
|
|
|
|
license = "GPL";
|
|
|
|
homepage = http://ktorrent.org;
|
|
|
|
maintainers = [ lib.maintainers.sander ];
|
|
|
|
};
|
2009-08-15 16:02:49 +02:00
|
|
|
}
|