2016-11-23 16:04:18 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, which, sqlite, lua5_1, perl, zlib, pkgconfig, ncurses
|
2018-02-24 14:12:44 +01:00
|
|
|
, dejavu_fonts, libpng, SDL2, SDL2_image, libGLU_combined, freetype, pngcrush, advancecomp
|
2016-03-06 03:06:24 +01:00
|
|
|
, tileMode ? false
|
2014-11-04 04:13:01 +01:00
|
|
|
}:
|
2014-07-04 18:26:14 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-11-23 16:04:18 +01:00
|
|
|
name = "crawl-${version}${lib.optionalString tileMode "-tiles"}";
|
2018-09-28 20:54:49 +02:00
|
|
|
version = "0.22.1";
|
2016-08-13 02:09:22 +02:00
|
|
|
|
2015-03-29 04:03:54 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "crawl-ref";
|
|
|
|
repo = "crawl-ref";
|
|
|
|
rev = version;
|
2018-09-28 20:54:49 +02:00
|
|
|
sha256 = "19yzl241glv2zazifgz59bw3jlh4hj59xx5w002hnh9rp1w15rnr";
|
2014-11-04 04:13:01 +01:00
|
|
|
};
|
2014-07-04 18:26:14 +02:00
|
|
|
|
2018-08-11 14:00:15 +02:00
|
|
|
# Patch hard-coded paths in the makefile
|
2015-03-29 04:03:54 +02:00
|
|
|
patches = [ ./crawl_purify.patch ];
|
2014-07-04 18:26:14 +02:00
|
|
|
|
2016-11-23 16:04:18 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig which perl pngcrush advancecomp ];
|
2014-07-04 18:26:14 +02:00
|
|
|
|
2014-11-04 04:13:01 +01:00
|
|
|
# Still unstable with luajit
|
|
|
|
buildInputs = [ lua5_1 zlib sqlite ncurses ]
|
2018-02-24 14:12:44 +01:00
|
|
|
++ lib.optionals tileMode [ libpng SDL2 SDL2_image freetype libGLU_combined ];
|
2014-07-04 18:26:14 +02:00
|
|
|
|
2014-11-04 04:13:01 +01:00
|
|
|
preBuild = ''
|
2015-03-29 04:03:54 +02:00
|
|
|
cd crawl-ref/source
|
|
|
|
echo "${version}" > util/release_ver
|
2018-08-11 14:00:15 +02:00
|
|
|
patchShebangs 'util'
|
2015-01-08 10:26:49 +01:00
|
|
|
patchShebangs util/gen-mi-enum
|
2016-08-24 16:09:44 +02:00
|
|
|
rm -rf contrib
|
2014-11-04 04:13:01 +01:00
|
|
|
'';
|
2014-07-04 18:26:14 +02:00
|
|
|
|
2016-11-23 16:04:18 +01:00
|
|
|
fontsPath = lib.optionalString tileMode dejavu_fonts;
|
|
|
|
|
2018-02-25 18:14:19 +01:00
|
|
|
makeFlags = [ "prefix=$(out)" "FORCE_CC=cc" "FORCE_CXX=c++" "HOSTCXX=c++"
|
2016-11-23 16:04:18 +01:00
|
|
|
"SAVEDIR=~/.crawl" "sqlite=${sqlite.dev}"
|
|
|
|
] ++ lib.optional tileMode "TILES=y";
|
2014-11-04 04:13:01 +01:00
|
|
|
|
2016-11-23 16:04:18 +01:00
|
|
|
postInstall = lib.optionalString tileMode "mv $out/bin/crawl $out/bin/crawl-tiles";
|
2014-11-04 04:13:01 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Open-source, single-player, role-playing roguelike game";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://crawl.develz.org/;
|
2014-11-04 04:13:01 +01:00
|
|
|
longDescription = ''
|
|
|
|
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;
|
2014-11-08 22:16:34 +01:00
|
|
|
license = with licenses; [ gpl2Plus bsd2 bsd3 mit licenses.zlib cc0 ];
|
|
|
|
maintainers = [ maintainers.abbradar ];
|
2014-11-04 04:13:01 +01:00
|
|
|
};
|
2014-07-04 18:26:14 +02:00
|
|
|
}
|