2021-12-19 01:06:50 +00:00
|
|
|
{ fetchurl, lib, stdenv, makeDesktopItem, makeWrapper, unzip, jre, copyDesktopItems }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gpsprune";
|
2022-10-21 18:38:19 +00:00
|
|
|
version = "22.2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://activityworkshop.net/software/gpsprune/gpsprune_${version}.jar";
|
2022-10-21 18:38:19 +00:00
|
|
|
sha256 = "sha256-7T7UmS650VvYN29vQxemzsaxF5wPFF+yCNCTyXY7nmY=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
dontUnpack = true;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper copyDesktopItems ];
|
|
|
|
buildInputs = [ jre ];
|
|
|
|
|
|
|
|
desktopItems = [
|
|
|
|
(makeDesktopItem {
|
|
|
|
name = "gpsprune";
|
|
|
|
exec = "gpsprune";
|
|
|
|
icon = "gpsprune";
|
|
|
|
desktopName = "GpsPrune";
|
|
|
|
genericName = "GPS Data Editor";
|
|
|
|
comment = meta.description;
|
2022-03-05 16:20:37 +00:00
|
|
|
categories = [ "Education" "Geoscience" ];
|
2021-12-19 01:06:50 +00:00
|
|
|
})
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
install -Dm644 ${src} $out/share/java/gpsprune.jar
|
|
|
|
makeWrapper ${jre}/bin/java $out/bin/gpsprune \
|
2020-04-24 23:36:52 +00:00
|
|
|
--add-flags "-jar $out/share/java/gpsprune.jar"
|
|
|
|
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-19 01:06:50 +00:00
|
|
|
|
|
|
|
runHook postInstall
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Application for viewing, editing and converting GPS coordinate data";
|
|
|
|
homepage = "https://activityworkshop.net/software/gpsprune/";
|
2022-06-16 17:23:12 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2021-12-19 01:06:50 +00:00
|
|
|
maintainers = with maintainers; [ rycee ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|