nixpkgs/pkgs/tools/networking/bittorrent/default.nix
Eelco Dolstra 90e75450a4 * Added BitTorrent.
svn path=/nixpkgs/trunk/; revision=797
2004-02-17 20:03:12 +00:00

16 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;
}