nixpkgs/pkgs/tools/networking/bittorrent/default.nix

15 lines
346 B
Nix
Raw Normal View History

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