gpsprune: init at 18.2

This commit is contained in:
Robert Helgesson 2015-12-24 13:27:09 +01:00 committed by Moritz Ulrich
parent f6847f9dfb
commit 8c4bfb747e
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ fetchurl, stdenv, 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 ];
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
'';
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 ];
};
}

View file

@ -12031,6 +12031,8 @@ let
gpsd = callPackage ../servers/gpsd { }; gpsd = callPackage ../servers/gpsd { };
gpsprune = callPackage ../applications/misc/gpsprune { };
gtk2fontsel = callPackage ../applications/misc/gtk2fontsel { gtk2fontsel = callPackage ../applications/misc/gtk2fontsel {
inherit (gnome2) gtk; inherit (gnome2) gtk;
}; };