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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.8 KiB
Nix
Raw Normal View History

2021-04-28 14:51:32 +00:00
{ lib, stdenv, fetchurl, fetchsvn, makeWrapper, unzip, jre, libXxf86vm
, extraJavaOpts ? "-Djosm.restart=true -Djava.net.useSystemProxies=true"
}:
2020-05-08 08:14:10 +00:00
let
pname = "josm";
2024-02-09 22:05:52 +00:00
version = "18969";
2020-05-08 08:14:10 +00:00
srcs = {
jar = fetchurl {
url = "https://josm.openstreetmap.de/download/josm-snapshot-${version}.jar";
2024-02-09 22:05:52 +00:00
hash = "sha256-a8muRwE4+9WdYVz7lYE9dRnqVIGQxL8cFmIdBr2R65U=";
2020-05-08 08:14:10 +00:00
};
macosx = fetchurl {
2021-11-02 22:20:17 +00:00
url = "https://josm.openstreetmap.de/download/macosx/josm-macos-${version}-java17.zip";
2024-02-09 22:05:52 +00:00
hash = "sha256-npXY7WJM1+9ygeAw102UtimnI/yXqs5vgPnatm4AIrI=";
2020-05-08 08:14:10 +00:00
};
pkg = fetchsvn {
url = "https://josm.openstreetmap.de/svn/trunk/native/linux/tested";
rev = version;
2023-12-06 17:52:18 +00:00
sha256 = "sha256-RFZGRTDdWP/goH/Ev16nhq1SjxYkfFr3djwSrotK7Fo=";
2020-05-08 08:14:10 +00:00
};
2015-12-23 22:52:28 +00:00
};
2020-05-08 08:14:10 +00:00
in
2021-04-28 14:51:32 +00:00
stdenv.mkDerivation rec {
2020-05-08 08:14:10 +00:00
inherit pname version;
2015-12-23 22:52:28 +00:00
2020-05-08 08:14:10 +00:00
dontUnpack = true;
nativeBuildInputs = [ makeWrapper ];
buildInputs = lib.optionals (!stdenv.isDarwin) [ jre ];
2020-05-08 08:14:10 +00:00
installPhase =
if stdenv.isDarwin then ''
mkdir -p $out/Applications
${unzip}/bin/unzip ${srcs.macosx} 'JOSM.app/*' -d $out/Applications
'' else ''
install -Dm644 ${srcs.jar} $out/share/josm/josm.jar
cp -R ${srcs.pkg}/usr/share $out
2020-05-08 08:14:10 +00:00
# Add libXxf86vm to path because it is needed by at least Kendzi3D plugin
makeWrapper ${jre}/bin/java $out/bin/josm \
2021-04-28 14:51:32 +00:00
--add-flags "${extraJavaOpts} -jar $out/share/josm/josm.jar" \
2020-05-08 08:14:10 +00:00
--prefix LD_LIBRARY_PATH ":" '${libXxf86vm}/lib'
'';
2015-12-23 22:52:28 +00:00
meta = with lib; {
2017-06-20 00:50:03 +00:00
description = "An extensible editor for OpenStreetMap";
2020-04-07 17:06:14 +00:00
homepage = "https://josm.openstreetmap.de/";
2020-11-23 22:11:29 +00:00
changelog = "https://josm.openstreetmap.de/wiki/Changelog";
sourceProvenance = with sourceTypes; [ binaryBytecode ];
2015-12-23 22:52:28 +00:00
license = licenses.gpl2Plus;
2020-05-08 08:14:10 +00:00
maintainers = with maintainers; [ rycee sikmir ];
platforms = platforms.all;
2024-02-11 02:19:15 +00:00
mainProgram = "josm";
2015-12-23 22:52:28 +00:00
};
}