nixpkgs/pkgs/tools/networking/p2p/bittorrent/default.nix
Eelco Dolstra bf1e734f85 * Don't use the subpath operator (~) anymore, it's subsumed by normal
concatenation (+).

svn path=/nixpkgs/trunk/; revision=6080
2006-08-09 15:05:30 +00:00

13 lines
335 B
Nix

{stdenv, fetchurl, python, pygtk, makeWrapper}:
stdenv.mkDerivation {
name = "bittorrent-4.9.8";
builder = ./builder.sh;
src = fetchurl {
url = http://download.bittorrent.com/dl/BitTorrent-4.9.8.tar.gz;
md5 = "30d14135a8c6869976cd807db019dfd9";
};
buildInputs = [python pygtk];
inherit python pygtk makeWrapper;
}