1{ lib, stdenv, fetchurl, dee, gtk3, intltool, libdbusmenu-gtk3, libunity, pkg-config, rsync }:
2
3stdenv.mkDerivation rec {
4 version = "1.3.1";
5 pname = "grsync";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/grsync/grsync-${version}.tar.gz";
9 sha256 = "sha256-M8wOJdqmLlunCRyuo8g6jcdNxddyHEUB00nyEMSzxtM=";
10 };
11
12 nativeBuildInputs = [
13 intltool
14 pkg-config
15 ];
16
17 buildInputs = [
18 dee
19 gtk3
20 libdbusmenu-gtk3
21 libunity
22 rsync
23 ];
24
25 meta = with lib; {
26 description = "Synchronize folders, files and make backups";
27 homepage = "http://www.opbyte.it/grsync/";
28 license = licenses.gpl2Only;
29 platforms = platforms.linux;
30 maintainers = [ maintainers.kuznero ];
31 };
32}