nixpkgs/pkgs/games/crawl/default.nix

58 lines
1.8 KiB
Nix
Raw Normal View History

2016-11-23 15:04:18 +00:00
{ stdenv, lib, fetchFromGitHub, which, sqlite, lua5_1, perl, zlib, pkgconfig, ncurses
, dejavu_fonts, libpng, SDL2, SDL2_image, mesa, freetype, pngcrush, advancecomp
2016-03-06 02:06:24 +00:00
, tileMode ? false
}:
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"}";
2017-01-29 17:04:49 +00:00
version = "0.19.3";
2016-08-13 00:09:22 +00:00
2015-03-29 02:03:54 +00:00
src = fetchFromGitHub {
owner = "crawl-ref";
repo = "crawl-ref";
rev = version;
2017-01-29 17:04:49 +00:00
sha256 = "1qn6r5pg568pk8zgp2ijn04h4brvw675q4nxkkvzyf76ljbpzif7";
};
2014-07-04 16:26:14 +00:00
2015-03-29 02:03:54 +00:00
patches = [ ./crawl_purify.patch ];
2014-07-04 16:26:14 +00:00
2016-11-23 15:04:18 +00:00
nativeBuildInputs = [ pkgconfig which perl pngcrush advancecomp ];
2014-07-04 16:26:14 +00:00
# Still unstable with luajit
buildInputs = [ lua5_1 zlib sqlite ncurses ]
2016-11-23 15:04:18 +00:00
++ lib.optionals tileMode [ libpng SDL2 SDL2_image freetype mesa ];
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
2015-04-01 22:32:27 +00:00
for i in util/*; do
patchShebangs $i
done
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=$(out)" "FORCE_CC=gcc" "FORCE_CXX=g++" "HOSTCXX=g++"
2016-11-23 15:04:18 +00:00
"SAVEDIR=~/.crawl" "sqlite=${sqlite.dev}"
] ++ lib.optional tileMode "TILES=y";
2016-11-23 15:04:18 +00:00
postInstall = lib.optionalString tileMode "mv $out/bin/crawl $out/bin/crawl-tiles";
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/";
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;
license = with licenses; [ gpl2Plus bsd2 bsd3 mit licenses.zlib cc0 ];
maintainers = [ maintainers.abbradar ];
};
2014-07-04 16:26:14 +00:00
}