3
0
Fork 0
forked from mirrors/nixpkgs

josm: add desktop item

Also add platforms to package meta section.
This commit is contained in:
Robert Helgesson 2015-12-26 16:15:10 +01:00
parent 6878b2b21d
commit c930e03e60

View file

@ -1,4 +1,4 @@
{ fetchurl, stdenv, bash, jre8 }:
{ fetchurl, stdenv, makeDesktopItem, unzip, bash, jre8 }:
stdenv.mkDerivation rec {
name = "josm-${version}";
@ -13,6 +13,16 @@ stdenv.mkDerivation rec {
buildInputs = [ jre8 ];
desktopItem = makeDesktopItem {
name = "josm";
exec = "josm";
icon = "josm";
desktopName = "JOSM";
genericName = "OpenStreetMap Editor";
comment = meta.description;
categories = "Education;Geoscience;Maps;";
};
installPhase = ''
mkdir -p $out/bin $out/share/java
cp -v $src $out/share/java/josm.jar
@ -21,6 +31,11 @@ stdenv.mkDerivation rec {
exec ${jre8}/bin/java -jar $out/share/java/josm.jar "\$@"
EOF
chmod 755 $out/bin/josm
mkdir -p $out/share/applications
cp $desktopItem/share/applications"/"* $out/share/applications
mkdir -p $out/share/pixmaps
${unzip}/bin/unzip -p $src images/logo_48x48x32.png > $out/share/pixmaps/josm.png
'';
meta = with stdenv.lib; {
@ -28,5 +43,6 @@ stdenv.mkDerivation rec {
homepage = https://josm.openstreetmap.de/;
license = licenses.gpl2Plus;
maintainers = [ maintainers.rycee ];
platforms = platforms.all;
};
}