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

52 lines
1.7 KiB
Nix
Raw Normal View History

2020-05-08 08:14:10 +00:00
{ stdenv, fetchurl, fetchsvn, makeWrapper, unzip, jre, libXxf86vm }:
let
pname = "josm";
2020-11-23 22:11:29 +00:00
version = "17329";
2020-05-08 08:14:10 +00:00
srcs = {
jar = fetchurl {
url = "https://josm.openstreetmap.de/download/josm-snapshot-${version}.jar";
2020-11-23 22:11:29 +00:00
sha256 = "0hra146akadqz9acj1xa2vzrmipfzf8li7sgsmk169xr991y653k";
2020-05-08 08:14:10 +00:00
};
macosx = fetchurl {
url = "https://josm.openstreetmap.de/download/macosx/josm-macosx-${version}.zip";
2020-11-23 22:11:29 +00:00
sha256 = "0i09jnfqbcirmic9vayrp78lnyk4mfh7ax3v3cs8kyqhk930pscf";
2020-05-08 08:14:10 +00:00
};
pkg = fetchsvn {
url = "https://josm.openstreetmap.de/svn/trunk/native/linux/tested";
rev = version;
2020-06-03 20:59:53 +00:00
sha256 = "0ybjca6dhnbwl3xqwrc91c444fzs1zrlnz7qr3l79s1vll9r4qd1";
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
stdenv.mkDerivation {
inherit pname version;
2015-12-23 22:52:28 +00:00
2020-05-08 08:14:10 +00:00
dontUnpack = true;
2020-05-08 08:14:10 +00:00
buildInputs = stdenv.lib.optionals (!stdenv.isDarwin) [ jre makeWrapper ];
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 \
--add-flags "-Djosm.restart=true -Djava.net.useSystemProxies=true" \
--add-flags "-jar $out/share/josm/josm.jar" \
--prefix LD_LIBRARY_PATH ":" '${libXxf86vm}/lib'
'';
2015-12-23 22:52:28 +00:00
meta = with stdenv.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
};
}