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

stdenv.mkDerivation {
  name = "bittorrent-4.2.1";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/BitTorrent-4.2.1.tar.gz;
    md5 = "0deb2e083e95206a9e601ff6ca35b826";
  };
  buildInputs = [python pygtk];
  inherit python pygtk makeWrapper;
}