2015-03-29 03:03:54 +01:00
|
|
|
{ stdenv, fetchFromGitHub, which, sqlite, lua5_1, perl, zlib, pkgconfig, ncurses
|
2016-09-04 15:27:21 +01:00
|
|
|
, dejavu_fonts, libpng, SDL2, SDL2_image, mesa, freetype, pngcrush
|
2016-03-06 02:06:24 +00:00
|
|
|
, tileMode ? false
|
2014-11-04 03:13:01 +00:00
|
|
|
}:
|
2014-07-04 17:26:14 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-11-04 03:13:01 +00:00
|
|
|
name = "crawl-${version}" + (if tileMode then "-tiles" else "");
|
2016-08-13 01:09:22 +01:00
|
|
|
version = "0.18.1";
|
|
|
|
|
2015-03-29 03:03:54 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "crawl-ref";
|
|
|
|
repo = "crawl-ref";
|
|
|
|
rev = version;
|
2016-08-13 01:09:22 +01:00
|
|
|
sha256 = "1cg5mxhx0lfhadls6n8avcpkjx08nqf1y085li97zqxl3gjaj64j";
|
2014-11-04 03:13:01 +00:00
|
|
|
};
|
2014-07-04 17:26:14 +01:00
|
|
|
|
2015-03-29 03:03:54 +01:00
|
|
|
patches = [ ./crawl_purify.patch ];
|
2014-07-04 17:26:14 +01:00
|
|
|
|
2016-09-04 15:27:21 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig which perl pngcrush ];
|
2014-07-04 17:26:14 +01:00
|
|
|
|
2014-11-04 03:13:01 +00:00
|
|
|
# Still unstable with luajit
|
|
|
|
buildInputs = [ lua5_1 zlib sqlite ncurses ]
|
|
|
|
++ stdenv.lib.optionals tileMode
|
2015-04-01 23:32:27 +01:00
|
|
|
[ libpng SDL2 SDL2_image freetype mesa ];
|
2014-07-04 17:26:14 +01:00
|
|
|
|
2014-11-04 03:13:01 +00:00
|
|
|
preBuild = ''
|
2015-03-29 03:03:54 +01:00
|
|
|
cd crawl-ref/source
|
|
|
|
echo "${version}" > util/release_ver
|
2015-04-01 23:32:27 +01:00
|
|
|
for i in util/*; do
|
2015-01-08 09:26:49 +00:00
|
|
|
patchShebangs $i
|
|
|
|
done
|
|
|
|
patchShebangs util/gen-mi-enum
|
2016-08-24 15:09:44 +01:00
|
|
|
rm -rf contrib
|
2014-11-04 03:13:01 +00:00
|
|
|
'';
|
2014-07-04 17:26:14 +01:00
|
|
|
|
2014-11-04 03:13:01 +00:00
|
|
|
makeFlags = [ "prefix=$(out)" "FORCE_CC=gcc" "FORCE_CXX=g++" "HOSTCXX=g++"
|
2016-04-16 18:47:23 +01:00
|
|
|
"SAVEDIR=~/.crawl" "sqlite=${sqlite.dev}" ]
|
2014-11-04 03:13:01 +00:00
|
|
|
++ stdenv.lib.optionals tileMode [ "TILES=y" "dejavu_fonts=${dejavu_fonts}" ];
|
|
|
|
|
|
|
|
postInstall = if tileMode then "mv $out/bin/crawl $out/bin/crawl-tiles" else "";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Open-source, single-player, role-playing roguelike game";
|
2016-11-23 14:49:18 +00:00
|
|
|
homepage = "http://crawl.develz.org/";
|
2014-11-04 03:13:01 +00: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 21:16:34 +00:00
|
|
|
license = with licenses; [ gpl2Plus bsd2 bsd3 mit licenses.zlib cc0 ];
|
|
|
|
maintainers = [ maintainers.abbradar ];
|
2014-11-04 03:13:01 +00:00
|
|
|
};
|
2014-07-04 17:26:14 +01:00
|
|
|
}
|