2005-04-22 11:26:04 -07:00
|
|
|
{stdenv, fetchurl, python, pygtk, makeWrapper}:
|
2004-02-17 12:03:12 -08:00
|
|
|
|
2004-03-29 09:23:01 -08:00
|
|
|
stdenv.mkDerivation {
|
2006-12-13 10:04:03 -08:00
|
|
|
name = "bittorrent-5.0.3";
|
2004-02-17 12:03:12 -08:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2006-12-13 10:04:03 -08:00
|
|
|
url = http://download.bittorrent.com/dl/BitTorrent-5.0.3.tar.gz;
|
|
|
|
md5 = "592363a33c35e9f66759a736dbf7e038";
|
2004-02-17 12:03:12 -08:00
|
|
|
};
|
2005-04-22 11:26:04 -07:00
|
|
|
buildInputs = [python pygtk];
|
|
|
|
inherit python pygtk makeWrapper;
|
2006-10-11 09:45:55 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The original client for the BitTorrent peer-to-peer file sharing protocol";
|
|
|
|
};
|
2004-02-17 12:03:12 -08:00
|
|
|
}
|