mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
69ba5b12d9
Also add platforms to package meta section.
49 lines
1.4 KiB
Nix
49 lines
1.4 KiB
Nix
{ fetchurl, stdenv, makeDesktopItem, unzip, bash, jre8 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gpsprune-${version}";
|
|
version = "18.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://activityworkshop.net/software/gpsprune/gpsprune_${version}.jar";
|
|
sha256 = "12zwwiy0jfrwvgrb110flx4b7k3sp3ivx8ijjymdbbk48xil93l2";
|
|
};
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
buildInputs = [ jre8 ];
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = "gpsprune";
|
|
exec = "gpsprune";
|
|
icon = "gpsprune";
|
|
desktopName = "GpsPrune";
|
|
genericName = "GPS Data Editor";
|
|
comment = meta.description;
|
|
categories = "Education;Geoscience;";
|
|
};
|
|
|
|
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
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|