gnome.eog: add meta.mainProgram

In one of my personal deployments, I happen to have the line

    lib.getExe gnome.eog

which fails rather loudly with a warning that doing this is deprecated
if `mainProgram` is not defined for understandable reasons. So, this
patch adds this attribute.
This commit is contained in:
Maximilian Bosch 2024-01-06 16:41:23 +01:00
parent e55b4c1ec7
commit 8e14176f0f
No known key found for this signature in database

View file

@ -119,5 +119,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus;
maintainers = teams.gnome.members;
platforms = platforms.unix;
mainProgram = "eog";
};
}