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-08-13 12:11:11 +02:00
|
|
|
name = "bittorrent-3.4.2";
|
2004-02-17 21:03:12 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2005-02-15 15:44:19 +01:00
|
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/BitTorrent-3.4.2.tar.gz;
|
2004-08-13 12:11:11 +02:00
|
|
|
md5 = "b854f25a33289565bcaeaded04955c1a";
|
2004-02-17 21:03:12 +01:00
|
|
|
};
|
2004-03-29 19:23:01 +02:00
|
|
|
inherit wxPython;
|
2004-08-13 12:11:11 +02:00
|
|
|
inherit (wxPython) python;
|
2004-02-17 21:03:12 +01:00
|
|
|
}
|