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

54 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";
2021-07-24 18:07:40 +00:00
version = "18004";
2020-05-08 08:14:10 +00:00
srcs = {
jar = fetchurl {
url = "https://josm.openstreetmap.de/download/josm-snapshot-${version}.jar";
2021-07-24 18:07:40 +00:00
sha256 = "sha256-Cd+/sE6A0MddHeAxy3gx7ev+9UR3ZNcR0tCTmdX2FtY=";
2020-05-08 08:14:10 +00:00
};
macosx = fetchurl {
2021-03-23 19:35:36 +00:00
url = "https://josm.openstreetmap.de/download/macosx/josm-macos-${version}-java16.zip";
2021-07-24 18:07:40 +00:00
sha256 = "sha256-QSVh8043K/f7gPEjosGo/DNj1d75LUFwf6EMeHk68fM=";
2020-05-08 08:14:10 +00:00
};
pkg = fetchsvn {
url = "https://josm.openstreetmap.de/svn/trunk/native/linux/tested";
rev = version;
2021-07-24 18:07:40 +00:00
sha256 = "sha256-Ic6RtQPqpQIci1IbKgTcFmLfMdPxSVybrEAk+ttM0j8=";
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";
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;
2015-12-23 22:52:28 +00:00
};
}