mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
784605f8de
svn path=/nixpkgs/trunk/; revision=4378
13 lines
330 B
Nix
13 lines
330 B
Nix
{stdenv, fetchurl, python, pygtk, makeWrapper}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "bittorrent-4.2.1";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://www.bittorrent.com/dl/BitTorrent-4.2.1.tar.gz;
|
|
md5 = "0deb2e083e95206a9e601ff6ca35b826";
|
|
};
|
|
buildInputs = [python pygtk];
|
|
inherit python pygtk makeWrapper;
|
|
}
|