summary refs log tree commit diff
path: root/pkgs/tools/networking/bittorrent/default.nix
blob: f2ea431f11a32ce7ef404a8d14b61ba386ffbe25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, python, pygtk, makeWrapper}:

stdenv.mkDerivation {
  name = "bittorrent-4.4.0";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.bittorrent.com/dl/BitTorrent-4.4.0.tar.gz;
    md5 = "74d4b48202c28f0b27e989b6d5f5b214";
  };
  buildInputs = [python pygtk];
  inherit python pygtk makeWrapper;
}