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

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

55 lines
1.8 KiB
Nix
Raw Normal View History

2021-04-28 16:51:32 +02:00
{ lib, stdenv, fetchurl, fetchsvn, makeWrapper, unzip, jre, libXxf86vm
, extraJavaOpts ? "-Djosm.restart=true -Djava.net.useSystemProxies=true"
}:
2020-05-08 10:14:10 +02:00
let
pname = "josm";
2022-11-02 22:24:14 +01:00
version = "18583";
2020-05-08 10:14:10 +02:00
srcs = {
jar = fetchurl {
url = "https://josm.openstreetmap.de/download/josm-snapshot-${version}.jar";
2022-11-02 22:24:14 +01:00
hash = "sha256-6S6E7ngTCBXb0epPfYxIswLvfm9r2Ql0wgOs/PxpmIM=";
2020-05-08 10:14:10 +02:00
};
macosx = fetchurl {
2021-11-02 23:20:17 +01:00
url = "https://josm.openstreetmap.de/download/macosx/josm-macos-${version}-java17.zip";
2022-11-02 22:24:14 +01:00
hash = "sha256-3XEoSCXEpeqZj1y4nns5+0JR1SINYE1rsmQ4fMflxRQ=";
2020-05-08 10:14:10 +02:00
};
pkg = fetchsvn {
url = "https://josm.openstreetmap.de/svn/trunk/native/linux/tested";
rev = version;
2022-08-06 21:42:28 +02:00
sha256 = "sha256-Cga17ymUROJb5scpyOlo6JIgQ77yHavI0ciUpZN+jLk=";
2020-05-08 10:14:10 +02:00
};
2015-12-23 23:52:28 +01:00
};
2020-05-08 10:14:10 +02:00
in
2021-04-28 16:51:32 +02:00
stdenv.mkDerivation rec {
2020-05-08 10:14:10 +02:00
inherit pname version;
2015-12-23 23:52:28 +01:00
2020-05-08 10:14:10 +02:00
dontUnpack = true;
nativeBuildInputs = [ makeWrapper ];
buildInputs = lib.optionals (!stdenv.isDarwin) [ jre ];
2020-05-08 10:14:10 +02: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 10:14:10 +02:00
# Add libXxf86vm to path because it is needed by at least Kendzi3D plugin
makeWrapper ${jre}/bin/java $out/bin/josm \
2021-04-28 16:51:32 +02:00
--add-flags "${extraJavaOpts} -jar $out/share/josm/josm.jar" \
2020-05-08 10:14:10 +02:00
--prefix LD_LIBRARY_PATH ":" '${libXxf86vm}/lib'
'';
2015-12-23 23:52:28 +01:00
meta = with lib; {
2017-06-20 02:50:03 +02:00
description = "An extensible editor for OpenStreetMap";
2020-04-07 19:06:14 +02:00
homepage = "https://josm.openstreetmap.de/";
2020-11-23 23:11:29 +01:00
changelog = "https://josm.openstreetmap.de/wiki/Changelog";
sourceProvenance = with sourceTypes; [ binaryBytecode ];
2015-12-23 23:52:28 +01:00
license = licenses.gpl2Plus;
2020-05-08 10:14:10 +02:00
maintainers = with maintainers; [ rycee sikmir ];
platforms = platforms.all;
2015-12-23 23:52:28 +01:00
};
}