mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
Merge pull request #262766 from azahi/gzdoom-fix-desktop
This commit is contained in:
commit
3720ec2590
@ -10,6 +10,7 @@
|
||||
, fluidsynth
|
||||
, game-music-emu
|
||||
, gtk3
|
||||
, imagemagick
|
||||
, libGL
|
||||
, libjpeg
|
||||
, libsndfile
|
||||
@ -41,6 +42,7 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
copyDesktopItems
|
||||
imagemagick
|
||||
makeWrapper
|
||||
ninja
|
||||
pkg-config
|
||||
@ -81,6 +83,8 @@ stdenv.mkDerivation rec {
|
||||
name = "gzdoom";
|
||||
exec = "gzdoom";
|
||||
desktopName = "GZDoom";
|
||||
comment = meta.description;
|
||||
icon = "gzdoom";
|
||||
categories = [ "Game" ];
|
||||
})
|
||||
];
|
||||
@ -88,6 +92,12 @@ stdenv.mkDerivation rec {
|
||||
postInstall = ''
|
||||
mv $out/bin/gzdoom $out/share/games/doom/gzdoom
|
||||
makeWrapper $out/share/games/doom/gzdoom $out/bin/gzdoom
|
||||
|
||||
for size in 16 24 32 48 64 128; do
|
||||
mkdir -p $out/share/icons/hicolor/"$size"x"$size"/apps
|
||||
convert -background none -resize "$size"x"$size" $src/src/win32/icon1.ico -flatten \
|
||||
$out/share/icons/hicolor/"$size"x"$size"/apps/gzdoom.png
|
||||
done;
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user