about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-02-02 12:57:48 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-02-02 12:57:48 +0000
commite761659405852e3e9e764558dbbd460a75ce6446 (patch)
treec3046fc995605c7c89f640d370f74fd2035d0966 /pkgs
parentff501de0869ad1fac1b1f4058b9015ea00c022fd (diff)
* Bittorrent 4.4.0.
svn path=/nixpkgs/trunk/; revision=4672
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/networking/bittorrent/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/bittorrent/default.nix b/pkgs/tools/networking/bittorrent/default.nix
index df53cf0332892..f2ea431f11a32 100644
--- a/pkgs/tools/networking/bittorrent/default.nix
+++ b/pkgs/tools/networking/bittorrent/default.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl, python, pygtk, makeWrapper}:
 
 stdenv.mkDerivation {
-  name = "bittorrent-4.2.1";
+  name = "bittorrent-4.4.0";
   builder = ./builder.sh;
   src = fetchurl {
-    url = http://nix.cs.uu.nl/dist/tarballs/BitTorrent-4.2.1.tar.gz;
-    md5 = "0deb2e083e95206a9e601ff6ca35b826";
+    url = http://www.bittorrent.com/dl/BitTorrent-4.4.0.tar.gz;
+    md5 = "74d4b48202c28f0b27e989b6d5f5b214";
   };
   buildInputs = [python pygtk];
   inherit python pygtk makeWrapper;