forked from mirrors/nixpkgs
e42507d182
gazillion different servers. Resurrected some 25 missing files. svn path=/nixpkgs/trunk/; revision=2237
15 lines
346 B
Nix
15 lines
346 B
Nix
{stdenv, fetchurl, wxPython}:
|
|
|
|
assert wxPython.python.zlibSupport;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "bittorrent-3.4.2";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/BitTorrent-3.4.2.tar.gz;
|
|
md5 = "b854f25a33289565bcaeaded04955c1a";
|
|
};
|
|
inherit wxPython;
|
|
inherit (wxPython) python;
|
|
}
|