2004-02-17 21:03:12 +01:00
|
|
|
{stdenv, fetchurl, wxPython}:
|
|
|
|
|
|
|
|
assert wxPython.python.zlibSupport;
|
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2004-02-17 21:03:12 +01:00
|
|
|
name = "bittorrent-3.3";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://bitconjurer.org/BitTorrent/BitTorrent-3.3.tar.gz;
|
|
|
|
md5 = "1ecf1fc40b4972470313f9ae728206e8";
|
|
|
|
};
|
|
|
|
python = wxPython.python;
|
2004-03-29 19:23:01 +02:00
|
|
|
inherit wxPython;
|
2004-02-17 21:03:12 +01:00
|
|
|
}
|