about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p/transmission-remote-gtk/default.nix
blob: 894b1363cd0485330053f28cea9cad739416ef93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl, pkgconfig, intltool, gtk, json_glib, curl }:


stdenv.mkDerivation rec {
  name = "transmission-remote-gtk-1.0.1";

  src = fetchurl {
    url = "http://transmission-remote-gtk.googlecode.com/files/${name}.tar.gz";
    sha256 = "b1ae032dd52b2d7975656913e4fe39e7f74d29ef8138292d8b82318ff9afed6f";
  };

  buildInputs = [ pkgconfig intltool gtk json_glib curl ];

  meta = {
   description = "GTK remote control for the Transmission BitTorrent client";
  };
}