teeworlds: add desktop icon and menu item

This commit is contained in:
Georg Haas 2020-03-24 13:37:12 +01:00
parent b6d07eb8ad
commit 1d42440eb2
No known key found for this signature in database
GPG key ID: B2D065AD4D6E0C81

View file

@ -1,5 +1,5 @@
{ fetchFromGitHub, stdenv, cmake, pkgconfig, python3, alsaLib
, libX11, libGLU, SDL2, lua5_3, zlib, freetype, wavpack
, libX11, libGLU, SDL2, lua5_3, zlib, freetype, wavpack, icoutils
}:
stdenv.mkDerivation rec {
@ -21,12 +21,21 @@ stdenv.mkDerivation rec {
'#define DATA_DIR "${placeholder "out"}/share/teeworlds/data"'
'';
nativeBuildInputs = [ cmake pkgconfig ];
nativeBuildInputs = [ cmake pkgconfig icoutils ];
buildInputs = [
python3 alsaLib libX11 libGLU SDL2 lua5_3 zlib freetype wavpack
];
postInstall = ''
# Convert and install desktop icon
mkdir -p $out/share/pixmaps
icotool --extract --index 1 --output $out/share/pixmaps/teeworlds.png $src/other/icons/teeworlds.ico
# Install menu item
install -D $src/other/teeworlds.desktop $out/share/applications/teeworlds.desktop
'';
meta = {
description = "Retro multiplayer shooter game";