mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
xonotic: use svg icons
This commit is contained in:
parent
1c8118caac
commit
02dd36c0b0
@ -48,7 +48,7 @@ let
|
|||||||
exec = "$out/bin/xonotic";
|
exec = "$out/bin/xonotic";
|
||||||
comment = meta.description;
|
comment = meta.description;
|
||||||
desktopName = "Xonotic";
|
desktopName = "Xonotic";
|
||||||
categories = "Game;";
|
categories = "Game;Shooter;";
|
||||||
icon = "xonotic";
|
icon = "xonotic";
|
||||||
startupNotify = "false";
|
startupNotify = "false";
|
||||||
};
|
};
|
||||||
@ -84,7 +84,10 @@ let
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
install -Dm644 ../../misc/logos/icons_png/xonotic_128.png $out/share/pixmaps/xonotic.png
|
for size in 16x16 24x24 32x32 48x48 64x64 72x72 96x96 128x128 192x192 256x256 512x512 1024x1024 scalable; do
|
||||||
|
install -Dm644 ../../misc/logos/xonotic_icon.svg \
|
||||||
|
$out/share/icons/hicolor/$size/xonotic.svg
|
||||||
|
done
|
||||||
'' + lib.optionalString withDedicated ''
|
'' + lib.optionalString withDedicated ''
|
||||||
install -Dm755 darkplaces-dedicated "$out/bin/xonotic-dedicated"
|
install -Dm755 darkplaces-dedicated "$out/bin/xonotic-dedicated"
|
||||||
'' + lib.optionalString withGLX ''
|
'' + lib.optionalString withGLX ''
|
||||||
@ -147,7 +150,7 @@ in rec {
|
|||||||
ln -sf $out/bin/xonotic-sdl $out/bin/xonotic
|
ln -sf $out/bin/xonotic-sdl $out/bin/xonotic
|
||||||
'' + lib.optionalString (withSDL || withGLX) ''
|
'' + lib.optionalString (withSDL || withGLX) ''
|
||||||
mkdir -p $out/share
|
mkdir -p $out/share
|
||||||
ln -s ${xonotic-unwrapped}/share/pixmaps $out/share/pixmaps
|
ln -s ${xonotic-unwrapped}/share/icons $out/share/icons
|
||||||
${desktopItem.buildCommand}
|
${desktopItem.buildCommand}
|
||||||
'' + ''
|
'' + ''
|
||||||
for binary in $out/bin/xonotic-*; do
|
for binary in $out/bin/xonotic-*; do
|
||||||
|
Loading…
Reference in New Issue
Block a user