about summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorElijah M. Immer <me@eimmer.me>2024-01-29 11:54:00 -0800
committerElijah M. Immer <me@eimmer.me>2024-01-29 12:30:25 -0800
commite8ac3b6847d9b44e373c47232881cd01539e11bc (patch)
tree872a6ff5b98dd623912efe583647ce0faf29618a /pkgs/desktops
parent5f5d111816f94bd5a49f02064a564d2263abd352 (diff)
gnome.nautilus: add `meta.mainProgram`
The `lib.getExe` function's feature of assuming the program name
from the package is depracated, and it says to specify it here.

I didn't use the `.nautilus-wrapped` because I didn't see any other
packages with `meta.mainProgram` use the wrapped version, but I can
change if needed.
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/gnome/core/nautilus/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome/core/nautilus/default.nix b/pkgs/desktops/gnome/core/nautilus/default.nix
index 6c96c54f86b5d..7e2d442493768 100644
--- a/pkgs/desktops/gnome/core/nautilus/default.nix
+++ b/pkgs/desktops/gnome/core/nautilus/default.nix
@@ -130,5 +130,6 @@ stdenv.mkDerivation (finalAttrs: {
     license = licenses.gpl3Plus;
     platforms = platforms.linux;
     maintainers = teams.gnome.members;
+    mainProgram = "nautilus";
   };
 })