mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
hyperrogue: add .desktop file and icon
Add XDG .desktop file and icons.
This commit is contained in:
parent
4b201f6c57
commit
328b1d3cd5
@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchFromGitHub, SDL, SDL_ttf, SDL_gfx, SDL_mixer, autoreconfHook,
|
||||
libpng, glew }:
|
||||
libpng, glew, makeDesktopItem }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "hyperrogue-${version}";
|
||||
@ -16,6 +16,33 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ autoreconfHook SDL SDL_ttf SDL_gfx SDL_mixer libpng glew ];
|
||||
|
||||
desktopItem = makeDesktopItem {
|
||||
name = "hyperrogue";
|
||||
desktopName = "HyperRogue";
|
||||
genericName = "HyperRogue";
|
||||
comment = meta.description;
|
||||
icon = "hyperrogue";
|
||||
exec = "hyperrogue";
|
||||
categories = "Game;AdventureGame;";
|
||||
};
|
||||
|
||||
postInstall = ''
|
||||
install -m 444 -D ${desktopItem}/share/applications/hyperrogue.desktop \
|
||||
$out/share/applications/hyperrogue.desktop
|
||||
install -m 444 -D hyperroid/app/src/main/res/drawable-ldpi/icon.png \
|
||||
$out/share/icons/hicolor/36x36/apps/hyperrogue.png
|
||||
install -m 444 -D hyperroid/app/src/main/res/drawable-mdpi/icon.png \
|
||||
$out/share/icons/hicolor/48x48/apps/hyperrogue.png
|
||||
install -m 444 -D hyperroid/app/src/main/res/drawable-hdpi/icon.png \
|
||||
$out/share/icons/hicolor/72x72/apps/hyperrogue.png
|
||||
install -m 444 -D hyperroid/app/src/main/res/drawable-xhdpi/icon.png \
|
||||
$out/share/icons/hicolor/96x96/apps/hyperrogue.png
|
||||
install -m 444 -D hyperroid/app/src/main/res/drawable-xxhdpi/icon.png \
|
||||
$out/share/icons/hicolor/144x144/apps/hyperrogue.png
|
||||
install -m 444 -D hyperroid/app/src/main/res/drawable-xxxhdpi/icon.png \
|
||||
$out/share/icons/hicolor/192x192/apps/hyperrogue.png
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user