* Bittorrent updated to 5.2.2 (5.3 seems too hard to build).

svn path=/nixpkgs/trunk/; revision=21877
This commit is contained in:
Eelco Dolstra 2010-05-19 14:42:52 +00:00
parent f8a818bf20
commit 90b3af3bd7
2 changed files with 4 additions and 5 deletions

View File

@ -9,7 +9,6 @@ export HOME=$TMP
buildPhase() {
#substituteInPlace BitTorrent/GUI_wx/__init__.py --replace "'2.6'" "'2.8'"
python setup.py build
}

View File

@ -6,16 +6,16 @@
assert gui -> wxPython != null;
stdenv.mkDerivation {
name = "bittorrent-5.2.0";
name = "bittorrent-5.2.2";
builder = ./builder.sh;
src = fetchurl {
url = http://download.bittorrent.com/dl/BitTorrent-5.2.0.tar.gz;
sha256 = "0lg54x5y2k1cb7vpj7hanlnvzqa2k3v24qq0g6fsycjk4n8dky02";
url = http://download.bittorrent.com/dl/archive/BitTorrent-5.2.2.tar.gz;
sha256 = "05k803hbwsyn51j4aibzdsnqxz24kw4rvr60v2c0wji8gcvy3kx9";
};
buildInputs = [python pycrypto twisted makeWrapper]
buildInputs = [ python pycrypto twisted makeWrapper ]
++ stdenv.lib.optional gui wxPython;
meta = {