nixpkgs/pkgs/games/arx-libertatis/default.nix

64 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, zlib, boost
, openal, glm, freetype, libGLU, SDL2, epoxy
, dejavu_fonts, inkscape, optipng, imagemagick
, withCrashReporter ? !stdenv.isDarwin
2019-08-30 23:48:33 +00:00
, qtbase ? null
, wrapQtAppsHook ? null
, curl ? null
, gdb ? null
}:
with stdenv.lib;
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "arx-libertatis";
version = "2019-07-22";
src = fetchFromGitHub {
owner = "arx";
repo = "ArxLibertatis";
rev = "db77aa26bb8612f711b65e72b1cd8cf6481700c7";
sha256 = "0c88djyzjna17wjcvkgsfx3011m1rba5xdzdldy1hjmafpqgb4jj";
};
nativeBuildInputs = [
cmake inkscape imagemagick optipng
2019-08-30 23:48:33 +00:00
] ++ optionals withCrashReporter [ wrapQtAppsHook ];
buildInputs = [
zlib boost openal glm
freetype libGLU SDL2 epoxy
2019-08-30 23:48:33 +00:00
] ++ optionals withCrashReporter [ qtbase curl ]
++ optionals stdenv.isLinux [ gdb ];
2016-08-22 08:41:30 +00:00
cmakeFlags = [
"-DDATA_DIR_PREFIXES=$out/share"
"-DImageMagick_convert_EXECUTABLE=${imagemagick.out}/bin/convert"
"-DImageMagick_mogrify_EXECUTABLE=${imagemagick.out}/bin/mogrify"
];
enableParallelBuilding = true;
2019-08-30 23:48:33 +00:00
dontWrapQtApps = true;
postInstall = ''
ln -sf \
${dejavu_fonts}/share/fonts/truetype/DejaVuSansMono.ttf \
$out/share/games/arx/misc/dejavusansmono.ttf
2019-08-30 23:48:33 +00:00
'' + optionalString withCrashReporter ''
wrapQtApp "$out/libexec/arxcrashreporter"
'';
meta = {
description = ''
A cross-platform, open source port of Arx Fatalis, a 2002
first-person role-playing game / dungeon crawler
developed by Arkane Studios.
'';
homepage = http://arx-libertatis.org/;
license = licenses.gpl3;
maintainers = with maintainers; [ rnhmjoj ];
2016-07-09 22:57:55 +00:00
platforms = platforms.linux;
};
}