nixpkgs/pkgs/applications/misc/gpsprune/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.6 KiB
Nix
Raw Normal View History

2021-12-09 07:58:05 +00:00
{ fetchurl, lib, stdenv, makeDesktopItem, makeWrapper, unzip, jre, copyDesktopItems }:
2015-12-24 12:27:09 +00:00
stdenv.mkDerivation rec {
pname = "gpsprune";
2024-04-29 05:28:22 +00:00
version = "24";
2015-12-24 12:27:09 +00:00
src = fetchurl {
url = "https://activityworkshop.net/software/gpsprune/gpsprune_${version}.jar";
2024-04-29 05:28:22 +00:00
sha256 = "sha256-gMwTdwYjYJt1j5MpHw6UD1wqmF7q3ikzjVSOGakIP30=";
2015-12-24 12:27:09 +00:00
};
2021-12-09 07:58:05 +00:00
dontUnpack = true;
nativeBuildInputs = [ makeWrapper copyDesktopItems ];
buildInputs = [ jre ];
desktopItems = [
(makeDesktopItem {
name = "gpsprune";
exec = "gpsprune %F";
2021-12-09 07:58:05 +00:00
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"
];
2021-12-09 07:58:05 +00:00
})
];
2021-12-09 07:58:05 +00:00
installPhase = ''
runHook preInstall
install -Dm644 ${src} $out/share/java/gpsprune.jar
makeWrapper ${jre}/bin/java $out/bin/gpsprune \
--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-09 07:58:05 +00:00
runHook postInstall
2015-12-24 12:27:09 +00:00
'';
meta = with lib; {
2015-12-24 12:27:09 +00:00
description = "Application for viewing, editing and converting GPS coordinate data";
2020-04-05 18:50:59 +00:00
homepage = "https://activityworkshop.net/software/gpsprune/";
sourceProvenance = with sourceTypes; [ binaryBytecode ];
2015-12-24 12:27:09 +00:00
license = licenses.gpl2Plus;
2021-12-09 07:58:05 +00:00
maintainers = with maintainers; [ rycee ];
platforms = platforms.all;
2024-02-11 02:19:15 +00:00
mainProgram = "gpsprune";
2015-12-24 12:27:09 +00:00
};
}