gpsprune: add media type associations

Allows selection of GpsPrune in GNOME’s “Open With…” menu.
This commit is contained in:
Andrew Kvalheim
2023-09-19 00:28:23 +02:00
committed by Robert Helgesson
parent 5455f592a5
commit c54fc2a40f
+6 -1
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"
];
})
];