2007-08-09 18:55:14 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, kdelibs, xlibs, zlib
|
|
|
|
, libpng, libjpeg, perl, gmp
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-08-30 14:16:16 +02:00
|
|
|
name = "ktorrent-2.2.7";
|
2008-02-08 16:40:03 +01:00
|
|
|
|
2007-08-09 18:55:14 +02:00
|
|
|
src = fetchurl {
|
2008-08-30 14:16:16 +02:00
|
|
|
url = http://ktorrent.org/downloads/2.2.7/ktorrent-2.2.7.tar.bz2;
|
|
|
|
sha256 = "0wvv294grv07zwdsycfsyhq5fllqyljrcg5g9iwgn84fk3nszlbi";
|
2007-08-09 18:55:14 +02:00
|
|
|
};
|
2008-02-08 16:40:03 +01:00
|
|
|
|
2007-08-09 18:55:14 +02:00
|
|
|
buildInputs = [
|
|
|
|
pkgconfig kdelibs kdelibs.qt xlibs.xlibs zlib libpng libjpeg perl gmp
|
|
|
|
];
|
2008-02-08 16:40:03 +01:00
|
|
|
|
2007-08-09 18:55:14 +02:00
|
|
|
configureFlags = "--without-arts";
|
2008-02-08 16:40:03 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://ktorrent.org/;
|
|
|
|
description = "A BitTorrent client for KDE";
|
|
|
|
};
|
2007-08-09 18:55:14 +02:00
|
|
|
}
|