2022-08-21 04:35:00 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, SDL, SDL_ttf, SDL_gfx, SDL_mixer, libpng
|
|
|
|
, glew, dejavu_fonts, makeDesktopItem }:
|
2018-07-10 20:24:59 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "hyperrogue";
|
2022-08-21 04:35:00 +01:00
|
|
|
version = "12.0u";
|
2018-07-10 20:24:59 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zenorogue";
|
|
|
|
repo = "hyperrogue";
|
2020-04-02 17:33:58 +01:00
|
|
|
rev = "v${version}";
|
2022-08-21 04:35:00 +01:00
|
|
|
sha256 = "sha256-zG8Z+wpwr5z2r2CcjNxKOdiqXUN0AFChZcihUWel68A=";
|
2018-07-10 20:24:59 +01:00
|
|
|
};
|
|
|
|
|
2022-08-21 04:35:00 +01:00
|
|
|
CXXFLAGS = [
|
|
|
|
"-I${lib.getDev SDL}/include/SDL"
|
|
|
|
"-DHYPERPATH='\"${placeholder "out"}/share/hyperrogue/\"'"
|
|
|
|
"-DRESOURCEDESTDIR=HYPERPATH"
|
|
|
|
"-DHYPERFONTPATH='\"${dejavu_fonts}/share/fonts/truetype/\"'"
|
|
|
|
];
|
|
|
|
HYPERROGUE_USE_GLEW = 1;
|
|
|
|
HYPERROGUE_USE_PNG = 1;
|
2018-07-10 20:24:59 +01:00
|
|
|
|
2022-08-21 04:35:00 +01:00
|
|
|
buildInputs = [ SDL SDL_ttf SDL_gfx SDL_mixer libpng glew ];
|
2018-07-10 20:24:59 +01:00
|
|
|
|
2019-04-21 04:41:29 +01:00
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "hyperrogue";
|
|
|
|
desktopName = "HyperRogue";
|
|
|
|
genericName = "HyperRogue";
|
|
|
|
comment = meta.description;
|
|
|
|
icon = "hyperrogue";
|
|
|
|
exec = "hyperrogue";
|
2022-02-22 14:56:15 +00:00
|
|
|
categories = [ "Game" "AdventureGame" ];
|
2019-04-21 04:41:29 +01:00
|
|
|
};
|
|
|
|
|
2022-08-21 04:35:00 +01:00
|
|
|
installPhase = ''
|
|
|
|
install -d $out/share/hyperrogue/{sounds,music}
|
|
|
|
|
|
|
|
install -m 555 -D hyperrogue $out/bin/hyperrogue
|
|
|
|
install -m 444 -D hyperrogue-music.txt *.dat $out/share/hyperrogue
|
|
|
|
install -m 444 -D music/* $out/share/hyperrogue/music
|
|
|
|
install -m 444 -D sounds/* $out/share/hyperrogue/sounds
|
|
|
|
|
2019-04-21 04:41:29 +01:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2018-11-27 20:21:25 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.roguetemple.com/z/hyper/";
|
2018-07-10 20:24:59 +01:00
|
|
|
description = "A roguelike game set in hyperbolic geometry";
|
|
|
|
maintainers = with maintainers; [ rardiol ];
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|