about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-05-19 14:42:52 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-05-19 14:42:52 +0000
commit90b3af3bd726c0f66235f77e747c0d73bc71a885 (patch)
tree8e4c9cf79d57d8057e2cbb9d13b281c8bcf3fdf3
parentf8a818bf2054726f245f7d1c07785e22cf93a357 (diff)
downloadnixlib-90b3af3bd726c0f66235f77e747c0d73bc71a885.tar
nixlib-90b3af3bd726c0f66235f77e747c0d73bc71a885.tar.gz
nixlib-90b3af3bd726c0f66235f77e747c0d73bc71a885.tar.bz2
nixlib-90b3af3bd726c0f66235f77e747c0d73bc71a885.tar.lz
nixlib-90b3af3bd726c0f66235f77e747c0d73bc71a885.tar.xz
nixlib-90b3af3bd726c0f66235f77e747c0d73bc71a885.tar.zst
nixlib-90b3af3bd726c0f66235f77e747c0d73bc71a885.zip
* Bittorrent updated to 5.2.2 (5.3 seems too hard to build).
svn path=/nixpkgs/trunk/; revision=21877
-rw-r--r--pkgs/tools/networking/p2p/bittorrent/builder.sh1
-rw-r--r--pkgs/tools/networking/p2p/bittorrent/default.nix8
2 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/tools/networking/p2p/bittorrent/builder.sh b/pkgs/tools/networking/p2p/bittorrent/builder.sh
index c074c1919ac5..3f30aa5c851f 100644
--- a/pkgs/tools/networking/p2p/bittorrent/builder.sh
+++ b/pkgs/tools/networking/p2p/bittorrent/builder.sh
@@ -9,7 +9,6 @@ export HOME=$TMP
 
 
 buildPhase() {
-    #substituteInPlace BitTorrent/GUI_wx/__init__.py --replace "'2.6'" "'2.8'"
     python setup.py build
 }
 
diff --git a/pkgs/tools/networking/p2p/bittorrent/default.nix b/pkgs/tools/networking/p2p/bittorrent/default.nix
index 980f51d37467..1d4f43445bf1 100644
--- a/pkgs/tools/networking/p2p/bittorrent/default.nix
+++ b/pkgs/tools/networking/p2p/bittorrent/default.nix
@@ -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 = {