about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorSchweber <64630479+Schweber@users.noreply.github.com>2024-01-08 03:17:51 +0000
committeréclairevoyant <848000+eclairevoyant@users.noreply.github.com>2024-02-02 17:03:51 -0500
commit995980ca254892d6869d306985b3f93bb5595a28 (patch)
tree499565aabc1727b6f0f2e49ec5e4ca7031dedd11 /pkgs/applications/misc
parentac0524b807cb04a3e792c0bcc9e853e9a1547aa1 (diff)
grsync: Add wrapGAppsHook
(cherry picked from commit 7e5d75aff4ac4dd4195d31e98aea4e2b22407d97)
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/grsync/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/misc/grsync/default.nix b/pkgs/applications/misc/grsync/default.nix
index 856eeea21f37e..da41a71d95eab 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 ];
   };
 }