mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
55 lines
1.6 KiB
Nix
55 lines
1.6 KiB
Nix
{ fetchurl, lib, stdenv, makeDesktopItem, makeWrapper, unzip, jre, copyDesktopItems }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gpsprune";
|
|
version = "23.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://activityworkshop.net/software/gpsprune/gpsprune_${version}.jar";
|
|
sha256 = "sha256-r2iw1vINWgqxoW0Zc8Sloa+wN/GUbUQfJ0e2BSP9vxM=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
nativeBuildInputs = [ makeWrapper copyDesktopItems ];
|
|
buildInputs = [ jre ];
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "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"
|
|
];
|
|
})
|
|
];
|
|
|
|
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
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Application for viewing, editing and converting GPS coordinate data";
|
|
homepage = "https://activityworkshop.net/software/gpsprune/";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ rycee ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|