2017-10-11 01:01:42 +02:00
|
|
|
|
{ stdenv, fetchurl, SDL, ncurses, libtcod }:
|
2016-04-24 20:42:53 +02:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
name = "brogue-${version}";
|
2018-10-05 15:15:13 +02:00
|
|
|
|
version = "1.7.5";
|
2016-04-24 20:42:53 +02:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://sites.google.com/site/broguegame/brogue-${version}-linux-amd64.tbz2";
|
2018-10-05 15:15:13 +02:00
|
|
|
|
sha256 = "0i042zb3axjf0cpgpdh8hvfn66dbfizidyvw0iymjk2n760z2kx7";
|
2016-04-24 20:42:53 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
|
sed -i Makefile -e 's,LIBTCODDIR=.*,LIBTCODDIR=${libtcod},g' \
|
2016-08-23 02:26:46 +02:00
|
|
|
|
-e 's,sdl-config,${SDL.dev}/bin/sdl-config,g'
|
2016-04-24 20:42:53 +02: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 ];
|
|
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
|
install -m 555 -D bin/brogue $out/bin/brogue
|
|
|
|
|
mkdir -p $out/share/brogue
|
|
|
|
|
cp -r bin/fonts $out/share/brogue/
|
|
|
|
|
'';
|
|
|
|
|
|
2016-09-24 02:06:47 +02:00
|
|
|
|
# fix crash; shouldn’t be a security risk because it’s an offline game
|
2016-09-24 02:09:26 +02:00
|
|
|
|
hardeningDisable = [ "stackprotector" "fortify" ];
|
2016-09-24 02:06:47 +02:00
|
|
|
|
|
2016-04-24 20:42:53 +02:00
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
description = "A roguelike game";
|
|
|
|
|
homepage = https://sites.google.com/site/broguegame/;
|
|
|
|
|
license = licenses.agpl3;
|
|
|
|
|
maintainers = [ maintainers.skeidel ];
|
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
|
};
|
|
|
|
|
}
|