From 7e5d75aff4ac4dd4195d31e98aea4e2b22407d97 Mon Sep 17 00:00:00 2001 From: Schweber <64630479+Schweber@users.noreply.github.com> Date: Mon, 8 Jan 2024 03:17:51 +0000 Subject: [PATCH] grsync: Add wrapGAppsHook --- pkgs/applications/misc/grsync/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/misc/grsync/default.nix b/pkgs/applications/misc/grsync/default.nix index 856eeea21f37..da41a71d95ea 100644 --- a/pkgs/applications/misc/grsync/default.nix +++ b/pkgs/applications/misc/grsync/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, dee, gtk3, intltool, libdbusmenu-gtk3, libunity, pkg-config, rsync }: +{ lib, stdenv, fetchurl, dee, gtk3, intltool, libdbusmenu-gtk3, libunity, pkg-config, rsync, wrapGAppsHook }: stdenv.mkDerivation rec { version = "1.3.1"; @@ -12,6 +12,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ intltool pkg-config + wrapGAppsHook ]; buildInputs = [ @@ -27,6 +28,7 @@ stdenv.mkDerivation rec { homepage = "http://www.opbyte.it/grsync/"; license = licenses.gpl2Only; platforms = platforms.linux; + mainProgram = "grsync"; maintainers = [ maintainers.kuznero ]; }; }