2021-12-09 08:58:05 +01:00
|
|
|
{ fetchurl, lib, stdenv, makeDesktopItem, makeWrapper, unzip, jre, copyDesktopItems }:
|
2015-12-24 13:27:09 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gpsprune";
|
2023-10-10 07:10:40 +02:00
|
|
|
version = "23.2";
|
2015-12-24 13:27:09 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://activityworkshop.net/software/gpsprune/gpsprune_${version}.jar";
|
2023-10-10 07:10:40 +02:00
|
|
|
sha256 = "sha256-r2iw1vINWgqxoW0Zc8Sloa+wN/GUbUQfJ0e2BSP9vxM=";
|
2015-12-24 13:27:09 +01:00
|
|
|
};
|
|
|
|
|
2021-12-09 08:58:05 +01:00
|
|
|
dontUnpack = true;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper copyDesktopItems ];
|
|
|
|
buildInputs = [ jre ];
|
|
|
|
|
|
|
|
desktopItems = [
|
|
|
|
(makeDesktopItem {
|
|
|
|
name = "gpsprune";
|
2023-09-14 21:14:38 +02:00
|
|
|
exec = "gpsprune %F";
|
2021-12-09 08:58:05 +01:00
|
|
|
icon = "gpsprune";
|
|
|
|
desktopName = "GpsPrune";
|
|
|
|
genericName = "GPS Data Editor";
|
|
|
|
comment = meta.description;
|
2022-02-22 15:56:15 +01:00
|
|
|
categories = [ "Education" "Geoscience" ];
|
2023-09-14 21:14:38 +02:00
|
|
|
mimeTypes = [
|
|
|
|
"application/gpx+xml"
|
|
|
|
"application/vnd.google-earth.kml+xml"
|
|
|
|
"application/vnd.google-earth.kmz"
|
|
|
|
];
|
2021-12-09 08:58:05 +01:00
|
|
|
})
|
|
|
|
];
|
2015-12-26 16:19:24 +01:00
|
|
|
|
2021-12-09 08:58:05 +01:00
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
install -Dm644 ${src} $out/share/java/gpsprune.jar
|
|
|
|
makeWrapper ${jre}/bin/java $out/bin/gpsprune \
|
2018-05-17 19:12:17 +02:00
|
|
|
--add-flags "-jar $out/share/java/gpsprune.jar"
|
2015-12-26 16:19:24 +01:00
|
|
|
mkdir -p $out/share/pixmaps
|
|
|
|
${unzip}/bin/unzip -p $src tim/prune/gui/images/window_icon_64.png > $out/share/pixmaps/gpsprune.png
|
2021-12-09 08:58:05 +01:00
|
|
|
|
|
|
|
runHook postInstall
|
2015-12-24 13:27:09 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2015-12-24 13:27:09 +01:00
|
|
|
description = "Application for viewing, editing and converting GPS coordinate data";
|
2020-04-05 20:50:59 +02:00
|
|
|
homepage = "https://activityworkshop.net/software/gpsprune/";
|
2022-06-02 15:38:41 +02:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
2015-12-24 13:27:09 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2021-12-09 08:58:05 +01:00
|
|
|
maintainers = with maintainers; [ rycee ];
|
2015-12-26 16:19:24 +01:00
|
|
|
platforms = platforms.all;
|
2024-02-11 03:19:15 +01:00
|
|
|
mainProgram = "gpsprune";
|
2015-12-24 13:27:09 +01:00
|
|
|
};
|
|
|
|
}
|