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