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

49 lines
1.4 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, makeDesktopItem, unzip, bash, jre8 }:
2015-12-24 12:27:09 +00:00
stdenv.mkDerivation rec {
name = "gpsprune-${version}";
2016-04-20 14:35:01 +00:00
version = "18.3";
2015-12-24 12:27:09 +00:00
src = fetchurl {
url = "http://activityworkshop.net/software/gpsprune/gpsprune_${version}.jar";
2016-04-20 14:35:01 +00:00
sha256 = "1sas5n4k3afryg3k6y40w39kifs3d0yrnnk46nqp7axs4ay2aqim";
2015-12-24 12:27:09 +00:00
};
phases = [ "installPhase" ];
buildInputs = [ jre8 ];
desktopItem = makeDesktopItem {
name = "gpsprune";
exec = "gpsprune";
icon = "gpsprune";
desktopName = "GpsPrune";
genericName = "GPS Data Editor";
comment = meta.description;
categories = "Education;Geoscience;";
};
2015-12-24 12:27:09 +00:00
installPhase = ''
mkdir -p $out/bin $out/share/java
cp -v $src $out/share/java/gpsprune.jar
cat > $out/bin/gpsprune <<EOF
#!${bash}/bin/bash
exec ${jre8}/bin/java -jar $out/share/java/gpsprune.jar "\$@"
EOF
chmod 755 $out/bin/gpsprune
mkdir -p $out/share/applications
cp $desktopItem/share/applications"/"* $out/share/applications
mkdir -p $out/share/pixmaps
${unzip}/bin/unzip -p $src tim/prune/gui/images/window_icon_64.png > $out/share/pixmaps/gpsprune.png
2015-12-24 12:27:09 +00:00
'';
meta = with stdenv.lib; {
description = "Application for viewing, editing and converting GPS coordinate data";
homepage = http://activityworkshop.net/software/gpsprune/;
license = licenses.gpl2Plus;
maintainers = [ maintainers.rycee ];
platforms = platforms.all;
2015-12-24 12:27:09 +00:00
};
}