2022-05-19 17:18:04 +03:00
|
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, SDL, ncurses, libtcod, makeDesktopItem }:
|
2016-04-24 21:42:53 +03:00
|
|
|
|
|
2024-02-19 18:28:28 +03:00
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-08-15 15:41:18 +03:00
|
|
|
|
pname = "brogue";
|
2018-10-05 16:15:13 +03:00
|
|
|
|
version = "1.7.5";
|
2016-04-24 21:42:53 +03:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2024-02-19 18:28:28 +03:00
|
|
|
|
url = "https://sites.google.com/site/broguegame/brogue-${finalAttrs.version}-linux-amd64.tbz2";
|
2018-10-05 16:15:13 +03:00
|
|
|
|
sha256 = "0i042zb3axjf0cpgpdh8hvfn66dbfizidyvw0iymjk2n760z2kx7";
|
2016-04-24 21:42:53 +03:00
|
|
|
|
};
|
2022-05-19 17:18:04 +03:00
|
|
|
|
patches = [
|
|
|
|
|
# Pull upstream fix for -fno-common toolchains:
|
|
|
|
|
# https://github.com/tmewett/BrogueCE/pull/63
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
name = "fno-common.patch";
|
|
|
|
|
url = "https://github.com/tmewett/BrogueCE/commit/2c7ed0c48d9efd06bf0a2589ba967c0a22a8fa87.patch";
|
|
|
|
|
sha256 = "19lr2fa25dh79klm4f4kqyyqq7w5xmw9z0fvylkcckqvcv7dwhp3";
|
|
|
|
|
})
|
|
|
|
|
];
|
2016-04-24 21:42:53 +03:00
|
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
|
sed -i Makefile -e 's,LIBTCODDIR=.*,LIBTCODDIR=${libtcod},g' \
|
2022-05-10 08:09:27 +03:00
|
|
|
|
-e 's,sdl-config,${lib.getDev SDL}/bin/sdl-config,g'
|
2016-04-24 21:42:53 +03: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 14:07:13 +03:00
|
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
|
name = "brogue";
|
|
|
|
|
desktopName = "Brogue";
|
|
|
|
|
genericName = "Roguelike";
|
|
|
|
|
comment = "Brave the Dungeons of Doom!";
|
|
|
|
|
icon = "brogue";
|
|
|
|
|
exec = "brogue";
|
2022-02-22 17:56:15 +03:00
|
|
|
|
categories = [ "Game" "AdventureGame" ];
|
2019-04-21 14:07:13 +03:00
|
|
|
|
};
|
|
|
|
|
|
2016-04-24 21:42:53 +03:00
|
|
|
|
installPhase = ''
|
|
|
|
|
install -m 555 -D bin/brogue $out/bin/brogue
|
2024-02-19 18:28:28 +03:00
|
|
|
|
install -m 444 -D ${finalAttrs.desktopItem}/share/applications/brogue.desktop $out/share/applications/brogue.desktop
|
2019-04-21 14:07:13 +03:00
|
|
|
|
install -m 444 -D bin/brogue-icon.png $out/share/icons/hicolor/256x256/apps/brogue.png
|
2016-04-24 21:42:53 +03:00
|
|
|
|
mkdir -p $out/share/brogue
|
|
|
|
|
cp -r bin/fonts $out/share/brogue/
|
|
|
|
|
'';
|
|
|
|
|
|
2016-09-24 03:06:47 +03:00
|
|
|
|
# fix crash; shouldn’t be a security risk because it’s an offline game
|
2016-09-24 03:09:26 +03:00
|
|
|
|
hardeningDisable = [ "stackprotector" "fortify" ];
|
2016-09-24 03:06:47 +03:00
|
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
|
meta = with lib; {
|
2016-04-24 21:42:53 +03:00
|
|
|
|
description = "A roguelike game";
|
2020-04-01 04:11:51 +03:00
|
|
|
|
homepage = "https://sites.google.com/site/broguegame/";
|
2016-04-24 21:42:53 +03:00
|
|
|
|
license = licenses.agpl3;
|
2023-11-12 02:26:11 +03:00
|
|
|
|
maintainers = with maintainers; [ AndersonTorres fgaz ];
|
2016-04-24 21:42:53 +03:00
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
|
};
|
2024-02-19 18:28:28 +03:00
|
|
|
|
})
|