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-08-09 08:49:02 -07:00
|
|
|
name = "bittorrent-4.4.0";
|
2004-02-17 12:03:12 -08:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2006-08-09 08:49:02 -07:00
|
|
|
url = http://www.bittorrent.com/dl/BitTorrent-4.4.0.tar.gz;
|
|
|
|
md5 = "74d4b48202c28f0b27e989b6d5f5b214";
|
2004-02-17 12:03:12 -08:00
|
|
|
};
|
2005-04-22 11:26:04 -07:00
|
|
|
buildInputs = [python pygtk];
|
|
|
|
inherit python pygtk makeWrapper;
|
2004-02-17 12:03:12 -08:00
|
|
|
}
|