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

49 lines
1.4 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";
2022-02-11 17:24:50 +00:00
version = "21.1";
2015-12-24 12:27:09 +00:00
src = fetchurl {
url = "https://activityworkshop.net/software/gpsprune/gpsprune_${version}.jar";
2022-02-11 17:24:50 +00:00
sha256 = "sha256-WyI9IKzUmKGiqiYs6SSuGhVUdO2UCsPSSL/IjPLykiM=";
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";
icon = "gpsprune";
desktopName = "GpsPrune";
genericName = "GPS Data Editor";
comment = meta.description;
categories = "Education;Geoscience;";
})
];
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/";
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;
2015-12-24 12:27:09 +00:00
};
}