gpsprune: add media type associations

Allows selection of GpsPrune in GNOME’s “Open With…” menu.
This commit is contained in:
Andrew Kvalheim 2023-09-14 12:14:38 -07:00 committed by Robert Helgesson
parent 5455f592a5
commit c54fc2a40f

View File

@ -17,12 +17,17 @@ stdenv.mkDerivation rec {
desktopItems = [
(makeDesktopItem {
name = "gpsprune";
exec = "gpsprune";
exec = "gpsprune %F";
icon = "gpsprune";
desktopName = "GpsPrune";
genericName = "GPS Data Editor";
comment = meta.description;
categories = [ "Education" "Geoscience" ];
mimeTypes = [
"application/gpx+xml"
"application/vnd.google-earth.kml+xml"
"application/vnd.google-earth.kmz"
];
})
];