* Bittorrent 4.2.1.

svn path=/nixpkgs/trunk/; revision=4378
This commit is contained in:
Eelco Dolstra 2005-12-15 17:45:40 +00:00
parent 07687a8514
commit 784605f8de

View File

@ -1,11 +1,11 @@
{stdenv, fetchurl, python, pygtk, makeWrapper}:
stdenv.mkDerivation {
name = "bittorrent-4.0.1";
name = "bittorrent-4.2.1";
builder = ./builder.sh;
src = fetchurl {
url = http://www.bittorrent.com/dl/BitTorrent-4.0.1.tar.gz;
md5 = "e890d856d43b3d0af14b28714bc5801a";
url = http://www.bittorrent.com/dl/BitTorrent-4.2.1.tar.gz;
md5 = "0deb2e083e95206a9e601ff6ca35b826";
};
buildInputs = [python pygtk];
inherit python pygtk makeWrapper;