about summary refs log tree commit diff
path: root/pkgs/tools/networking/p2p/bittorrent/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/networking/p2p/bittorrent/default.nix')
-rw-r--r--pkgs/tools/networking/p2p/bittorrent/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/p2p/bittorrent/default.nix b/pkgs/tools/networking/p2p/bittorrent/default.nix
index cf84dcfa263b..204b3ec06056 100644
--- a/pkgs/tools/networking/p2p/bittorrent/default.nix
+++ b/pkgs/tools/networking/p2p/bittorrent/default.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl, python, pygtk, makeWrapper}:
 
 stdenv.mkDerivation {
-  name = "bittorrent-4.4.0";
+  name = "bittorrent-5.0.3";
   builder = ./builder.sh;
   src = fetchurl {
-    url = http://nix.cs.uu.nl/dist/tarballs/BitTorrent-4.4.0.tar.gz;
-    md5 = "74d4b48202c28f0b27e989b6d5f5b214";
+    url = http://download.bittorrent.com/dl/BitTorrent-5.0.3.tar.gz;
+    md5 = "592363a33c35e9f66759a736dbf7e038";
   };
   buildInputs = [python pygtk];
   inherit python pygtk makeWrapper;