sweethome3d: Improvements
- Replace non freedesktop `CAD` desktop category by categories taken from debian's desktop item. This make the desktop items appear under the `Graphic` category in DE menus instead of `Others`. - Moved to new package icons as specified by upstream release notes. - Moved to icon name instead of full path to a single icon as specified by freedesktop specification. - Human readable desktop item names.
This commit is contained in:
parent
77f8f35d57
commit
ebc3f4bdf3
@ -1,20 +1,33 @@
|
|||||||
{ stdenv, fetchurl, fetchcvs, makeWrapper, makeDesktopItem, jdk, jre, ant
|
{ lib, stdenv, fetchurl, fetchcvs, makeWrapper, makeDesktopItem, jdk, jre, ant
|
||||||
, gtk3, gsettings_desktop_schemas, p7zip }:
|
, gtk3, gsettings_desktop_schemas, p7zip }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
|
getDesktopFileName = drvName: (builtins.parseDrvName drvName).name;
|
||||||
|
|
||||||
|
# TODO: Should we move this to `lib`? Seems like its would be useful in many cases.
|
||||||
|
extensionOf = filePath:
|
||||||
|
lib.concatStringsSep "." (lib.tail (lib.splitString "."
|
||||||
|
(builtins.baseNameOf filePath)));
|
||||||
|
|
||||||
|
installIcons = iconName: icons: lib.concatStringsSep "\n" (lib.mapAttrsToList (size: iconFile: ''
|
||||||
|
mkdir -p "$out/share/icons/hicolor/${size}/apps"
|
||||||
|
ln -s -T "${iconFile}" "$out/share/icons/hicolor/${size}/apps/${iconName}.${extensionOf iconFile}"
|
||||||
|
'') icons);
|
||||||
|
|
||||||
mkSweetHome3D =
|
mkSweetHome3D =
|
||||||
{ name, module, version, src, license, description, icon }:
|
{ name, module, version, src, license, description, desktopName, icons }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
inherit name version src description icon;
|
inherit name version src description;
|
||||||
exec = stdenv.lib.toLower module;
|
exec = stdenv.lib.toLower module;
|
||||||
sweethome3dItem = makeDesktopItem {
|
sweethome3dItem = makeDesktopItem {
|
||||||
inherit name exec icon;
|
inherit exec desktopName;
|
||||||
|
name = getDesktopFileName name;
|
||||||
|
icon = getDesktopFileName name;
|
||||||
comment = description;
|
comment = description;
|
||||||
desktopName = name;
|
|
||||||
genericName = "Computer Aided (Interior) Design";
|
genericName = "Computer Aided (Interior) Design";
|
||||||
categories = "Application;CAD;";
|
categories = "Application;Graphics;2DGraphics;3DGraphics;";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ant jdk jre makeWrapper p7zip gtk3 gsettings_desktop_schemas ];
|
buildInputs = [ ant jdk jre makeWrapper p7zip gtk3 gsettings_desktop_schemas ];
|
||||||
@ -29,7 +42,11 @@ let
|
|||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
cp install/${module}-${version}.jar $out/share/java/.
|
cp install/${module}-${version}.jar $out/share/java/.
|
||||||
|
|
||||||
|
${installIcons (getDesktopFileName name) icons}
|
||||||
|
|
||||||
cp "${sweethome3dItem}/share/applications/"* $out/share/applications
|
cp "${sweethome3dItem}/share/applications/"* $out/share/applications
|
||||||
|
|
||||||
makeWrapper ${jre}/bin/java $out/bin/$exec \
|
makeWrapper ${jre}/bin/java $out/bin/$exec \
|
||||||
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3}/share:${gsettings_desktop_schemas}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" \
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3}/share:${gsettings_desktop_schemas}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" \
|
||||||
--add-flags "-jar $out/share/java/${module}-${version}.jar -cp $out/share/java/Furniture.jar:$out/share/java/Textures.jar:$out/share/java/Help.jar ${if stdenv.system == "x86_64-linux" then "-d64" else "-d32"}"
|
--add-flags "-jar $out/share/java/${module}-${version}.jar -cp $out/share/java/Furniture.jar:$out/share/java/Textures.jar:$out/share/java/Help.jar ${if stdenv.system == "x86_64-linux" then "-d64" else "-d32"}"
|
||||||
@ -62,9 +79,16 @@ in rec {
|
|||||||
module = module;
|
module = module;
|
||||||
tag = "V_" + d2u version;
|
tag = "V_" + d2u version;
|
||||||
};
|
};
|
||||||
icon = fetchurl {
|
desktopName = "Sweet Home 3D";
|
||||||
url = "http://sweethome3d.cvs.sourceforge.net/viewvc/sweethome3d/SweetHome3D/src/com/eteks/sweethome3d/viewcontroller/resources/help/images/sweethome3d.png";
|
icons = {
|
||||||
sha256 = "0lnv2sz2d3m8jx25hz92gzardf0iblykhy5q0q2cyb7mw2qb2p92";
|
"32x32" = fetchurl {
|
||||||
|
url = "http://sweethome3d.cvs.sourceforge.net/viewvc/sweethome3d/SweetHome3D/deploy/SweetHome3DIcon32x32.png";
|
||||||
|
sha256 = "1r2fhfg27mx00nfv0qj66rhf719s2g1vhdis7bdc9mqk9x0mb0ir";
|
||||||
|
};
|
||||||
|
"48x48" = fetchurl {
|
||||||
|
url = "http://sweethome3d.cvs.sourceforge.net/viewvc/sweethome3d/SweetHome3D/deploy/SweetHome3DIcon48x48.png";
|
||||||
|
sha256 = "1ap6d75dyqqvx21wddvn8vw2apq3v803vmbxdriwd0dw9rq3zn4g";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -9,19 +9,21 @@ let
|
|||||||
+ "-editor";
|
+ "-editor";
|
||||||
sweetName = m: v: sweetExec m + "-" + v;
|
sweetName = m: v: sweetExec m + "-" + v;
|
||||||
|
|
||||||
|
getDesktopFileName = drvName: (builtins.parseDrvName drvName).name;
|
||||||
|
|
||||||
mkEditorProject =
|
mkEditorProject =
|
||||||
{ name, module, version, src, license, description }:
|
{ name, module, version, src, license, description, desktopName }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
application = sweethome3dApp;
|
application = sweethome3dApp;
|
||||||
inherit name module version src description;
|
inherit name module version src description;
|
||||||
exec = sweetExec module;
|
exec = sweetExec module;
|
||||||
editorItem = makeDesktopItem {
|
editorItem = makeDesktopItem {
|
||||||
inherit name exec;
|
inherit exec desktopName;
|
||||||
|
name = getDesktopFileName name;
|
||||||
comment = description;
|
comment = description;
|
||||||
desktopName = name;
|
|
||||||
genericName = "Computer Aided (Interior) Design";
|
genericName = "Computer Aided (Interior) Design";
|
||||||
categories = "Application;CAD;";
|
categories = "Application;Graphics;2DGraphics;3DGraphics;";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ant jre jdk makeWrapper gtk3 gsettings_desktop_schemas ];
|
buildInputs = [ ant jre jdk makeWrapper gtk3 gsettings_desktop_schemas ];
|
||||||
@ -72,6 +74,7 @@ in {
|
|||||||
module = module;
|
module = module;
|
||||||
tag = "V_" + d2u version;
|
tag = "V_" + d2u version;
|
||||||
};
|
};
|
||||||
|
desktopName = "Sweet Home 3D - Textures Library Editor";
|
||||||
};
|
};
|
||||||
|
|
||||||
furniture-editor = mkEditorProject rec {
|
furniture-editor = mkEditorProject rec {
|
||||||
@ -86,6 +89,7 @@ in {
|
|||||||
module = module;
|
module = module;
|
||||||
tag = "V_" + d2u version;
|
tag = "V_" + d2u version;
|
||||||
};
|
};
|
||||||
|
desktopName = "Sweet Home 3D - Furniture Library Editor";
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user