nixpkgs/pkgs/applications/misc/grsync/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
711 B
Nix
Raw Normal View History

2021-09-22 19:26:15 +02:00
{ lib, stdenv, fetchurl, dee, gtk3, intltool, libdbusmenu-gtk3, libunity, pkg-config, rsync }:
stdenv.mkDerivation rec {
2021-09-22 19:26:15 +02:00
version = "1.3.0";
pname = "grsync";
src = fetchurl {
url = "mirror://sourceforge/grsync/grsync-${version}.tar.gz";
2021-09-22 19:26:15 +02:00
sha256 = "sha256-t8fGpi4FMC2DF8OHQefXHvmrRjnuW/8mIqODsgQ6Nfw=";
};
nativeBuildInputs = [
intltool
pkg-config
];
buildInputs = [
dee
2021-09-22 19:26:15 +02:00
gtk3
libdbusmenu-gtk3
libunity
rsync
];
meta = with lib; {
description = "Synchronize folders, files and make backups";
homepage = "http://www.opbyte.it/grsync/";
license = licenses.gpl1;
platforms = platforms.linux;
maintainers = [ maintainers.kuznero ];
};
}