nixpkgs/pkgs/games/crawl/default.nix

54 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, which, sqlite, lua5_1, perl, zlib, pkgconfig, ncurses
, dejavu_fonts, libpng, SDL, SDL_image, mesa, freetype
, tileMode ? true
}:
2014-07-04 16:26:14 +00:00
let version = "0.15.2";
in
2014-07-04 16:26:14 +00:00
stdenv.mkDerivation rec {
name = "crawl-${version}" + (if tileMode then "-tiles" else "");
src = fetchurl {
url = "mirror://sourceforge/crawl-ref/Stone%20Soup/${version}/stone_soup-${version}-nodeps.tar.xz";
sha256 = "1qi1g8w0sxmwrv96hnay20gpwp1xn2xcq1cw9iwn1yq112484fp9";
};
2014-07-04 16:26:14 +00:00
patches = [ ./makefile_fonts.patch ./makefile_sqlite.patch ];
2014-07-04 16:26:14 +00:00
nativeBuildInputs = [ pkgconfig which perl ];
2014-07-04 16:26:14 +00:00
# Still unstable with luajit
buildInputs = [ lua5_1 zlib sqlite ncurses ]
++ stdenv.lib.optionals tileMode
[ libpng SDL SDL_image freetype mesa ];
2014-07-04 16:26:14 +00:00
preBuild = ''
cd source
# Related to issue #1963
sed -i 's/-fuse-ld=gold//g' Makefile
for i in util/*.pl; do
patchShebangs $i
done
patchShebangs util/gen-mi-enum
'';
2014-07-04 16:26:14 +00:00
makeFlags = [ "prefix=$(out)" "FORCE_CC=gcc" "FORCE_CXX=g++" "HOSTCXX=g++"
"SAVEDIR=~/.crawl" "sqlite=${sqlite}" ]
++ 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";
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 20:28:06 +00:00
license = with licenses; [ gpl2Plus bsd2 bsd3 mit zlib cc0 ];
maintainers = maintainers.abbradar;
};
2014-07-04 16:26:14 +00:00
}