nixpkgs/pkgs/tools/networking/p2p/bittorrent/default.nix
Eelco Dolstra 6006d61835 * Added a bunch of descriptions.
svn path=/nixpkgs/trunk/; revision=6705
2006-10-11 16:45:55 +00:00

17 lines
442 B
Nix

{stdenv, fetchurl, python, pygtk, makeWrapper}:
stdenv.mkDerivation {
name = "bittorrent-4.4.0";
builder = ./builder.sh;
src = fetchurl {
url = http://www.bittorrent.com/dl/BitTorrent-4.4.0.tar.gz;
md5 = "74d4b48202c28f0b27e989b6d5f5b214";
};
buildInputs = [python pygtk];
inherit python pygtk makeWrapper;
meta = {
description = "The original client for the BitTorrent peer-to-peer file sharing protocol";
};
}