2021-01-11 07:54:33 +00:00
|
|
|
|
{ lib, stdenv, fetchurl, SDL, ncurses, libtcod, makeDesktopItem }:
|
2016-04-24 19:42:53 +01:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
|
pname = "brogue";
|
2018-10-05 14:15:13 +01:00
|
|
|
|
version = "1.7.5";
|
2016-04-24 19:42:53 +01:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://sites.google.com/site/broguegame/brogue-${version}-linux-amd64.tbz2";
|
2018-10-05 14:15:13 +01:00
|
|
|
|
sha256 = "0i042zb3axjf0cpgpdh8hvfn66dbfizidyvw0iymjk2n760z2kx7";
|
2016-04-24 19:42:53 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
|
sed -i Makefile -e 's,LIBTCODDIR=.*,LIBTCODDIR=${libtcod},g' \
|
2016-08-23 01:26:46 +01:00
|
|
|
|
-e 's,sdl-config,${SDL.dev}/bin/sdl-config,g'
|
2016-04-24 19:42:53 +01:00
|
|
|
|
sed -i src/platform/tcod-platform.c -e "s,fonts/font,$out/share/brogue/fonts/font,g"
|
|
|
|
|
make clean
|
|
|
|
|
rm -rf src/libtcod*
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
buildInputs = [ SDL ncurses libtcod ];
|
|
|
|
|
|
2019-04-21 12:07:13 +01:00
|
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
|
name = "brogue";
|
|
|
|
|
desktopName = "Brogue";
|
|
|
|
|
genericName = "Roguelike";
|
|
|
|
|
comment = "Brave the Dungeons of Doom!";
|
|
|
|
|
icon = "brogue";
|
|
|
|
|
exec = "brogue";
|
|
|
|
|
categories = "Game;AdventureGame;";
|
|
|
|
|
terminal = "false";
|
|
|
|
|
};
|
|
|
|
|
|
2016-04-24 19:42:53 +01:00
|
|
|
|
installPhase = ''
|
|
|
|
|
install -m 555 -D bin/brogue $out/bin/brogue
|
2019-04-21 12:07:13 +01:00
|
|
|
|
install -m 444 -D ${desktopItem}/share/applications/brogue.desktop $out/share/applications/brogue.desktop
|
|
|
|
|
install -m 444 -D bin/brogue-icon.png $out/share/icons/hicolor/256x256/apps/brogue.png
|
2016-04-24 19:42:53 +01:00
|
|
|
|
mkdir -p $out/share/brogue
|
|
|
|
|
cp -r bin/fonts $out/share/brogue/
|
|
|
|
|
'';
|
|
|
|
|
|
2016-09-24 01:06:47 +01:00
|
|
|
|
# fix crash; shouldn’t be a security risk because it’s an offline game
|
2016-09-24 01:09:26 +01:00
|
|
|
|
hardeningDisable = [ "stackprotector" "fortify" ];
|
2016-09-24 01:06:47 +01:00
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
|
meta = with lib; {
|
2016-04-24 19:42:53 +01:00
|
|
|
|
description = "A roguelike game";
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://sites.google.com/site/broguegame/";
|
2016-04-24 19:42:53 +01:00
|
|
|
|
license = licenses.agpl3;
|
|
|
|
|
maintainers = [ maintainers.skeidel ];
|
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
|
};
|
|
|
|
|
}
|