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