Use new ktorrent in kde44

svn path=/nixpkgs/trunk/; revision=23755
This commit is contained in:
Yury G. Kudryashov 2010-09-13 14:23:08 +00:00
parent 38dec40ddc
commit e723e53699
2 changed files with 1 additions and 26 deletions

View File

@ -290,13 +290,7 @@ pkgs.recurseIntoAttrs (rec {
poppler = pkgs.popplerQt4;
};
ktorrent = import ./extragear/ktorrent {
inherit (pkgs) stdenv fetchurl lib cmake qt4 perl gmp taglib boost gettext;
inherit kdelibs kdepimlibs kdebase_workspace;
inherit automoc4 phonon qca2;
};
inherit (pkgs) konversation yakuake;
inherit (pkgs) konversation yakuake ktorrent;
gtk_qt_engine = import ./extragear/gtk-qt-engine {
inherit (pkgs) stdenv fetchurl cmake qt4 perl gettext;

View File

@ -1,19 +0,0 @@
{stdenv, fetchurl, lib, cmake, qt4, perl, gmp, taglib, boost, gettext,
kdelibs, kdepimlibs, kdebase_workspace, automoc4, phonon, qca2}:
stdenv.mkDerivation {
name = "ktorrent-3.3.4";
src = fetchurl {
url = http://ktorrent.org/downloads/3.3.4/ktorrent-3.3.4.tar.bz2;
sha256 = "09lq5140135v9919k4wfmqww5jm17yvyqny8hlk10zyzd42vh7zk";
};
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 ];
meta = {
description = "KDE integrated BitTorrent client";
license = "GPL";
homepage = http://ktorrent.org;
maintainers = [ lib.maintainers.sander ];
};
}