mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
gpsprune: 20.4 → 21
This commit is contained in:
parent
4a8f9970e2
commit
d78f228604
1 changed files with 26 additions and 21 deletions
|
@ -1,43 +1,48 @@
|
||||||
{ fetchurl, lib, stdenv, makeDesktopItem, makeWrapper, unzip, jdk }:
|
{ fetchurl, lib, stdenv, makeDesktopItem, makeWrapper, unzip, jre, copyDesktopItems }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gpsprune";
|
pname = "gpsprune";
|
||||||
version = "20.4";
|
version = "21";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://activityworkshop.net/software/gpsprune/gpsprune_${version}.jar";
|
url = "https://activityworkshop.net/software/gpsprune/gpsprune_${version}.jar";
|
||||||
sha256 = "sha256-ZTYkKyu0/axf2uLUmQHRW/2bQ6p2zK7xBF66ozbPS2c=";
|
sha256 = "sha256-FS6nf8K+qfEWDCQwmoxH1laJIONMtwmb/H89SVJtV1E=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
dontUnpack = true;
|
||||||
buildInputs = [ jdk ];
|
|
||||||
|
|
||||||
desktopItem = makeDesktopItem {
|
nativeBuildInputs = [ makeWrapper copyDesktopItems ];
|
||||||
name = "gpsprune";
|
buildInputs = [ jre ];
|
||||||
exec = "gpsprune";
|
|
||||||
icon = "gpsprune";
|
|
||||||
desktopName = "GpsPrune";
|
|
||||||
genericName = "GPS Data Editor";
|
|
||||||
comment = meta.description;
|
|
||||||
categories = "Education;Geoscience;";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildCommand = ''
|
desktopItems = [
|
||||||
mkdir -p $out/bin $out/share/java
|
(makeDesktopItem {
|
||||||
cp -v $src $out/share/java/gpsprune.jar
|
name = "gpsprune";
|
||||||
makeWrapper ${jdk}/bin/java $out/bin/gpsprune \
|
exec = "gpsprune";
|
||||||
|
icon = "gpsprune";
|
||||||
|
desktopName = "GpsPrune";
|
||||||
|
genericName = "GPS Data Editor";
|
||||||
|
comment = meta.description;
|
||||||
|
categories = "Education;Geoscience;";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
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"
|
--add-flags "-jar $out/share/java/gpsprune.jar"
|
||||||
mkdir -p $out/share/applications
|
|
||||||
cp $desktopItem/share/applications"/"* $out/share/applications
|
|
||||||
mkdir -p $out/share/pixmaps
|
mkdir -p $out/share/pixmaps
|
||||||
${unzip}/bin/unzip -p $src tim/prune/gui/images/window_icon_64.png > $out/share/pixmaps/gpsprune.png
|
${unzip}/bin/unzip -p $src tim/prune/gui/images/window_icon_64.png > $out/share/pixmaps/gpsprune.png
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Application for viewing, editing and converting GPS coordinate data";
|
description = "Application for viewing, editing and converting GPS coordinate data";
|
||||||
homepage = "https://activityworkshop.net/software/gpsprune/";
|
homepage = "https://activityworkshop.net/software/gpsprune/";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = [ maintainers.rycee ];
|
maintainers = with maintainers; [ rycee ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue