90e75450a4
svn path=/nixpkgs/trunk/; revision=797
15 lines
354 B
Nix
15 lines
354 B
Nix
{stdenv, fetchurl, wxPython}:
|
|
|
|
assert wxPython.python.zlibSupport;
|
|
|
|
derivation {
|
|
name = "bittorrent-3.3";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://bitconjurer.org/BitTorrent/BitTorrent-3.3.tar.gz;
|
|
md5 = "1ecf1fc40b4972470313f9ae728206e8";
|
|
};
|
|
python = wxPython.python;
|
|
inherit stdenv wxPython;
|
|
}
|