nixpkgs/pkgs/tools/networking/bittorrent/default.nix
Eelco Dolstra 92fbc10356 * Bittorrent: latest version (3.4.2).
svn path=/nixpkgs/trunk/; revision=1264
2004-08-13 10:11:11 +00:00

15 lines
357 B
Nix

{stdenv, fetchurl, wxPython}:
assert wxPython.python.zlibSupport;
stdenv.mkDerivation {
name = "bittorrent-3.4.2";
builder = ./builder.sh;
src = fetchurl {
url = http://heanet.dl.sourceforge.net/sourceforge/bittorrent/BitTorrent-3.4.2.tar.gz;
md5 = "b854f25a33289565bcaeaded04955c1a";
};
inherit wxPython;
inherit (wxPython) python;
}