nixpkgs/pkgs/games/crawl/default.nix

78 lines
3 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, fetchpatch, which, sqlite, lua5_1, perl, python3, zlib, pkg-config, ncurses
2019-11-10 16:44:34 +00:00
, dejavu_fonts, libpng, SDL2, SDL2_image, SDL2_mixer, libGLU, libGL, freetype, pngcrush, advancecomp
, tileMode ? false, enableSound ? tileMode
# MacOS / Darwin builds
, darwin ? null
}:
2014-07-04 16:26:14 +00:00
stdenv.mkDerivation rec {
2016-11-23 15:04:18 +00:00
name = "crawl-${version}${lib.optionalString tileMode "-tiles"}";
2021-02-06 09:46:08 +00:00
version = "0.26.1";
2016-08-13 00:09:22 +00:00
2015-03-29 02:03:54 +00:00
src = fetchFromGitHub {
2019-02-06 10:07:31 +00:00
owner = "crawl";
repo = "crawl";
2015-03-29 02:03:54 +00:00
rev = version;
2021-02-06 09:46:08 +00:00
sha256 = "sha256-lh0lCMZRH+c6jSHjLFDU3wjy6Oyp59ZcPaqg5PWVrkk=";
};
2014-07-04 16:26:14 +00:00
2019-10-28 10:20:42 +00:00
# Patch hard-coded paths and remove force library builds
patches = [ ./crawl_purify.patch ];
2014-07-04 16:26:14 +00:00
nativeBuildInputs = [ pkg-config which perl pngcrush advancecomp ];
2014-07-04 16:26:14 +00:00
# Still unstable with luajit
buildInputs = [ lua5_1 zlib sqlite ncurses ]
++ (with python3.pkgs; [ pyyaml ])
2019-11-10 16:44:34 +00:00
++ lib.optionals tileMode [ libpng SDL2 SDL2_image freetype libGLU libGL ]
++ lib.optional enableSound SDL2_mixer
++ (lib.optionals stdenv.isDarwin (
assert (lib.assertMsg (darwin != null) "Must have darwin frameworks available for darwin builds");
with darwin.apple_sdk.frameworks; [
AppKit AudioUnit CoreAudio ForceFeedback Carbon IOKit OpenGL
]
));
2014-07-04 16:26:14 +00:00
preBuild = ''
2015-03-29 02:03:54 +00:00
cd crawl-ref/source
echo "${version}" > util/release_ver
2018-08-11 12:00:15 +00:00
patchShebangs 'util'
patchShebangs util/gen-mi-enum
2016-08-24 14:09:44 +00:00
rm -rf contrib
'';
2014-07-04 16:26:14 +00:00
2016-11-23 15:04:18 +00:00
fontsPath = lib.optionalString tileMode dejavu_fonts;
makeFlags = [ "prefix=${placeholder "out"}" "FORCE_CC=${stdenv.cc.targetPrefix}cc" "FORCE_CXX=${stdenv.cc.targetPrefix}c++" "HOSTCXX=${stdenv.cc.targetPrefix}c++"
"FORCE_PKGCONFIG=y"
2016-11-23 15:04:18 +00:00
"SAVEDIR=~/.crawl" "sqlite=${sqlite.dev}"
"DATADIR=${placeholder "out"}"
] ++ lib.optional tileMode "TILES=y"
++ lib.optional enableSound "SOUND=y";
postInstall = ''
${lib.optionalString tileMode "mv $out/bin/crawl $out/bin/crawl-tiles"}
sed -i 's#/usr/games/##' debian/crawl${lib.optionalString tileMode "-tiles"}.desktop
install -m 444 -D debian/crawl${lib.optionalString tileMode "-tiles"}.desktop \
$out/share/applications/crawl${lib.optionalString tileMode "-tiles"}.desktop
install -m 444 -D dat/tiles/stone_soup_icon-512x512.png $out/share/icons/hicolor/512x512/apps/crawl.png
'';
enableParallelBuilding = true;
meta = with lib; {
description = "Open-source, single-player, role-playing roguelike game";
2020-04-07 19:10:58 +00:00
homepage = "http://crawl.develz.org/";
longDescription = ''
Dungeon Crawl: Stone Soup, an open-source, single-player, role-playing
roguelike game of exploration and treasure-hunting in dungeons filled
with dangerous and unfriendly monsters in a quest to rescue the
mystifyingly fabulous Orb of Zot.
'';
platforms = platforms.linux ++ platforms.darwin;
license = with licenses; [ gpl2Plus bsd2 bsd3 mit licenses.zlib cc0 ];
maintainers = [ maintainers.abbradar ];
};
2014-07-04 16:26:14 +00:00
}