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


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

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

  buildInputs = [ pkgconfig intltool gtk3 json_glib curl ];

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