summary refs log tree commit diff
path: root/pkgs/applications/misc/grsync/default.nix
blob: 3e1bb31091f81e18c275a14567a8d2e4ad43e888 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchurl, dee, gtk2, intltool, libdbusmenu-gtk2, libunity, pkg-config, rsync }:

stdenv.mkDerivation rec {
  version = "1.2.6";
  pname = "grsync";

  src = fetchurl {
    url = "mirror://sourceforge/grsync/grsync-${version}.tar.gz";
    sha256 = "06ani65d58p8r3jvxjwpwyqrr07ya3icdqc243nxcrv7bvmarmb6";
  };

  nativeBuildInputs = [
    intltool
    pkg-config
  ];

  buildInputs = [
    dee
    gtk2
    libdbusmenu-gtk2
    libunity
    rsync
  ];

  meta = with stdenv.lib; {
    description = "Grsync is used to synchronize folders, files and make backups";
    homepage = "http://www.opbyte.it/grsync/";
    license = licenses.gpl1;
    platforms = platforms.linux;
    maintainers = [ maintainers.kuznero ];
  };
}