about summary refs log tree commit diff
path: root/pkgs/applications/graphics/oculante
diff options
context:
space:
mode:
authoréclairevoyant <848000+eclairevoyant@users.noreply.github.com>2023-11-13 14:27:11 -0500
committerGitHub <noreply@github.com>2023-11-13 21:27:11 +0200
commitbf92b7d76dad6d3906978ba09fc98b2263aeb3c0 (patch)
treed9fb74bdd7546609f16eb27bab8c5e96c110de3f /pkgs/applications/graphics/oculante
parentb5bd1053d2b02040f8e6f628bbe213358dbe3bfc (diff)
oculante: add wrapGAppsHook, set meta.mainProgram (#263238)
Diffstat (limited to 'pkgs/applications/graphics/oculante')
-rw-r--r--pkgs/applications/graphics/oculante/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/oculante/default.nix b/pkgs/applications/graphics/oculante/default.nix
index 9e0206a91c9b3..676cb3452afaa 100644
--- a/pkgs/applications/graphics/oculante/default.nix
+++ b/pkgs/applications/graphics/oculante/default.nix
@@ -17,6 +17,7 @@
 , gtk3
 , darwin
 , perl
+, wrapGAppsHook
 }:
 
 rustPlatform.buildRustPackage rec {
@@ -39,6 +40,7 @@ rustPlatform.buildRustPackage rec {
     pkg-config
     nasm
     perl
+    wrapGAppsHook
   ];
 
   checkFlagsArray = [ "--skip=tests::net" ]; # requires network access
@@ -74,6 +76,7 @@ rustPlatform.buildRustPackage rec {
     homepage = "https://github.com/woelper/oculante";
     changelog = "https://github.com/woelper/oculante/blob/${version}/CHANGELOG.md";
     license = licenses.mit;
+    mainProgram = "oculante";
     maintainers = with maintainers; [ dit7ya figsoda ];
   };
 }