From e8ac3b6847d9b44e373c47232881cd01539e11bc Mon Sep 17 00:00:00 2001 From: "Elijah M. Immer" Date: Mon, 29 Jan 2024 11:54:00 -0800 Subject: [PATCH] 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. --- pkgs/desktops/gnome/core/nautilus/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/desktops/gnome/core/nautilus/default.nix b/pkgs/desktops/gnome/core/nautilus/default.nix index 6c96c54f86b5..7e2d44249376 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"; }; })