mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
60 lines
2 KiB
Nix
60 lines
2 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, SDL, ncurses, libtcod, makeDesktopItem }:
|
||
|
||
stdenv.mkDerivation (finalAttrs: {
|
||
pname = "brogue";
|
||
version = "1.7.5";
|
||
|
||
src = fetchurl {
|
||
url = "https://sites.google.com/site/broguegame/brogue-${finalAttrs.version}-linux-amd64.tbz2";
|
||
sha256 = "0i042zb3axjf0cpgpdh8hvfn66dbfizidyvw0iymjk2n760z2kx7";
|
||
};
|
||
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";
|
||
})
|
||
];
|
||
|
||
prePatch = ''
|
||
sed -i Makefile -e 's,LIBTCODDIR=.*,LIBTCODDIR=${libtcod},g' \
|
||
-e 's,sdl-config,${lib.getDev SDL}/bin/sdl-config,g'
|
||
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 ];
|
||
|
||
desktopItem = makeDesktopItem {
|
||
name = "brogue";
|
||
desktopName = "Brogue";
|
||
genericName = "Roguelike";
|
||
comment = "Brave the Dungeons of Doom!";
|
||
icon = "brogue";
|
||
exec = "brogue";
|
||
categories = [ "Game" "AdventureGame" ];
|
||
};
|
||
|
||
installPhase = ''
|
||
install -m 555 -D bin/brogue $out/bin/brogue
|
||
install -m 444 -D ${finalAttrs.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
|
||
mkdir -p $out/share/brogue
|
||
cp -r bin/fonts $out/share/brogue/
|
||
'';
|
||
|
||
# fix crash; shouldn’t be a security risk because it’s an offline game
|
||
hardeningDisable = [ "stackprotector" "fortify" ];
|
||
|
||
meta = with lib; {
|
||
description = "Roguelike game";
|
||
mainProgram = "brogue";
|
||
homepage = "https://sites.google.com/site/broguegame/";
|
||
license = licenses.agpl3Plus;
|
||
maintainers = with maintainers; [ AndersonTorres fgaz ];
|
||
platforms = [ "x86_64-linux" ];
|
||
};
|
||
})
|