* Don't use the subpath operator (~) anymore, it's subsumed by normal

concatenation (+).

svn path=/nixpkgs/trunk/; revision=6080
This commit is contained in:
Eelco Dolstra
2006-08-09 15:05:30 +00:00
parent d9ec01e77f
commit bf1e734f85
9 changed files with 13 additions and 13 deletions
@@ -1,11 +1,11 @@
{stdenv, fetchurl, python, pygtk, makeWrapper}:
stdenv.mkDerivation {
name = "bittorrent-4.4.0";
name = "bittorrent-4.9.8";
builder = ./builder.sh;
src = fetchurl {
url = http://www.bittorrent.com/dl/BitTorrent-4.4.0.tar.gz;
md5 = "74d4b48202c28f0b27e989b6d5f5b214";
url = http://download.bittorrent.com/dl/BitTorrent-4.9.8.tar.gz;
md5 = "30d14135a8c6869976cd807db019dfd9";
};
buildInputs = [python pygtk];
inherit python pygtk makeWrapper;