mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
Merge pull request #11960 from rycee/add-desktop-items
Add desktop items for josm and gpsprune
This commit is contained in:
commit
3a4d07e4d3
@ -1,4 +1,4 @@
|
|||||||
{ fetchurl, stdenv, bash, jre8 }:
|
{ fetchurl, stdenv, makeDesktopItem, unzip, bash, jre8 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gpsprune-${version}";
|
name = "gpsprune-${version}";
|
||||||
@ -13,6 +13,16 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ jre8 ];
|
buildInputs = [ jre8 ];
|
||||||
|
|
||||||
|
desktopItem = makeDesktopItem {
|
||||||
|
name = "gpsprune";
|
||||||
|
exec = "gpsprune";
|
||||||
|
icon = "gpsprune";
|
||||||
|
desktopName = "GpsPrune";
|
||||||
|
genericName = "GPS Data Editor";
|
||||||
|
comment = meta.description;
|
||||||
|
categories = "Education;Geoscience;";
|
||||||
|
};
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin $out/share/java
|
mkdir -p $out/bin $out/share/java
|
||||||
cp -v $src $out/share/java/gpsprune.jar
|
cp -v $src $out/share/java/gpsprune.jar
|
||||||
@ -21,6 +31,11 @@ stdenv.mkDerivation rec {
|
|||||||
exec ${jre8}/bin/java -jar $out/share/java/gpsprune.jar "\$@"
|
exec ${jre8}/bin/java -jar $out/share/java/gpsprune.jar "\$@"
|
||||||
EOF
|
EOF
|
||||||
chmod 755 $out/bin/gpsprune
|
chmod 755 $out/bin/gpsprune
|
||||||
|
|
||||||
|
mkdir -p $out/share/applications
|
||||||
|
cp $desktopItem/share/applications"/"* $out/share/applications
|
||||||
|
mkdir -p $out/share/pixmaps
|
||||||
|
${unzip}/bin/unzip -p $src tim/prune/gui/images/window_icon_64.png > $out/share/pixmaps/gpsprune.png
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
@ -28,5 +43,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = http://activityworkshop.net/software/gpsprune/;
|
homepage = http://activityworkshop.net/software/gpsprune/;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = [ maintainers.rycee ];
|
maintainers = [ maintainers.rycee ];
|
||||||
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ fetchurl, stdenv, bash, jre8 }:
|
{ fetchurl, stdenv, makeDesktopItem, unzip, bash, jre8 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "josm-${version}";
|
name = "josm-${version}";
|
||||||
@ -13,6 +13,16 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ jre8 ];
|
buildInputs = [ jre8 ];
|
||||||
|
|
||||||
|
desktopItem = makeDesktopItem {
|
||||||
|
name = "josm";
|
||||||
|
exec = "josm";
|
||||||
|
icon = "josm";
|
||||||
|
desktopName = "JOSM";
|
||||||
|
genericName = "OpenStreetMap Editor";
|
||||||
|
comment = meta.description;
|
||||||
|
categories = "Education;Geoscience;Maps;";
|
||||||
|
};
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin $out/share/java
|
mkdir -p $out/bin $out/share/java
|
||||||
cp -v $src $out/share/java/josm.jar
|
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 "\$@"
|
exec ${jre8}/bin/java -jar $out/share/java/josm.jar "\$@"
|
||||||
EOF
|
EOF
|
||||||
chmod 755 $out/bin/josm
|
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; {
|
meta = with stdenv.lib; {
|
||||||
@ -28,5 +43,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = https://josm.openstreetmap.de/;
|
homepage = https://josm.openstreetmap.de/;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = [ maintainers.rycee ];
|
maintainers = [ maintainers.rycee ];
|
||||||
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user