2021-01-15 04:31:39 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
cmake,
|
|
|
|
zlib,
|
|
|
|
boost,
|
2021-11-11 04:35:34 +00:00
|
|
|
openal,
|
|
|
|
glm,
|
|
|
|
freetype,
|
|
|
|
libGLU,
|
|
|
|
SDL2,
|
|
|
|
libepoxy,
|
2020-09-10 18:38:25 +00:00
|
|
|
dejavu_fonts,
|
|
|
|
inkscape,
|
|
|
|
optipng,
|
|
|
|
imagemagick,
|
2019-02-22 17:56:07 +00:00
|
|
|
withCrashReporter ? !stdenv.hostPlatform.isDarwin,
|
2019-08-30 23:48:33 +00:00
|
|
|
qtbase ? null,
|
|
|
|
wrapQtAppsHook ? null,
|
2019-02-22 17:56:07 +00:00
|
|
|
curl ? null,
|
|
|
|
gdb ? null,
|
|
|
|
}:
|
|
|
|
|
2024-03-14 18:32:06 +00:00
|
|
|
let
|
|
|
|
inherit (lib)
|
|
|
|
licenses
|
|
|
|
maintainers
|
|
|
|
optionals
|
|
|
|
optionalString
|
|
|
|
platforms
|
|
|
|
;
|
|
|
|
in
|
2016-02-04 19:36:02 +00:00
|
|
|
|
2023-06-08 22:46:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "arx-libertatis";
|
2023-06-08 22:46:25 +00:00
|
|
|
version = "1.2.1";
|
2016-02-04 19:36:02 +00:00
|
|
|
|
2017-02-28 21:49:15 +00:00
|
|
|
src = fetchFromGitHub {
|
2019-08-31 01:22:32 +00:00
|
|
|
owner = "arx";
|
|
|
|
repo = "ArxLibertatis";
|
2023-06-08 22:46:25 +00:00
|
|
|
rev = version;
|
|
|
|
sha256 = "GBJcsibolZP3oVOTSaiVqG2nMmvXonKTp5i/0NNODKY=";
|
2016-02-04 19:36:02 +00:00
|
|
|
};
|
|
|
|
|
2019-02-22 17:56:07 +00:00
|
|
|
nativeBuildInputs = [
|
2020-09-10 18:38:25 +00:00
|
|
|
cmake
|
|
|
|
inkscape
|
|
|
|
imagemagick
|
|
|
|
optipng
|
2019-08-30 23:48:33 +00: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
|
2021-11-11 04:35:34 +00:00
|
|
|
freetype
|
|
|
|
libGLU
|
|
|
|
SDL2
|
|
|
|
libepoxy
|
2019-08-30 23:48:33 +00:00
|
|
|
]
|
|
|
|
++ optionals withCrashReporter [
|
|
|
|
qtbase
|
|
|
|
curl
|
|
|
|
]
|
2019-02-22 17:56:07 +00:00
|
|
|
++ optionals stdenv.hostPlatform.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"
|
|
|
|
];
|
2016-02-04 23:07:01 +00:00
|
|
|
|
2019-08-30 23:48:33 +00: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-30 23:48:33 +00: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 01:11:51 +00:00
|
|
|
homepage = "https://arx-libertatis.org/";
|
2016-02-04 19:36:02 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
2016-07-09 22:57:55 +00:00
|
|
|
platforms = platforms.linux;
|
2016-02-04 19:36:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|