162 lines
3.4 KiB
Nix
162 lines
3.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
gitUpdater,
|
|
substitute,
|
|
cmake,
|
|
coreutils,
|
|
libpng,
|
|
bzip2,
|
|
curl,
|
|
libogg,
|
|
jsoncpp,
|
|
libjpeg,
|
|
libGLU,
|
|
openal,
|
|
libvorbis,
|
|
sqlite,
|
|
luajit,
|
|
freetype,
|
|
gettext,
|
|
doxygen,
|
|
ncurses,
|
|
graphviz,
|
|
xorg,
|
|
gmp,
|
|
libspatialindex,
|
|
leveldb,
|
|
libpq,
|
|
hiredis,
|
|
libiconv,
|
|
ninja,
|
|
prometheus-cpp,
|
|
buildClient ? true,
|
|
buildServer ? true,
|
|
SDL2,
|
|
useSDL2 ? true,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "luanti";
|
|
version = "5.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "luanti-org";
|
|
repo = "luanti";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-TvI0+G7bRwwkEegv/AN4aBIN05M1AnWsaYD4lr3VTb8=";
|
|
};
|
|
|
|
patches = [
|
|
(substitute {
|
|
src = ./0000-mark-rm-for-substitution.patch;
|
|
substitutions = [
|
|
"--subst-var-by"
|
|
"RM_COMMAND"
|
|
"${coreutils}/bin/rm"
|
|
];
|
|
})
|
|
];
|
|
|
|
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
sed -i '/pagezero_size/d;/fixup_bundle/d' src/CMakeLists.txt
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "BUILD_CLIENT" buildClient)
|
|
(lib.cmakeBool "BUILD_SERVER" buildServer)
|
|
(lib.cmakeBool "BUILD_UNITTESTS" (finalAttrs.finalPackage.doCheck or false))
|
|
(lib.cmakeBool "ENABLE_PROMETHEUS" buildServer)
|
|
(lib.cmakeBool "USE_SDL2" useSDL2)
|
|
# Ensure we use system libraries
|
|
(lib.cmakeBool "ENABLE_SYSTEM_GMP" true)
|
|
(lib.cmakeBool "ENABLE_SYSTEM_JSONCPP" true)
|
|
# Updates are handled by nix anyway
|
|
(lib.cmakeBool "ENABLE_UPDATE_CHECKER" false)
|
|
# ...but make it clear that this is a nix package
|
|
(lib.cmakeFeature "VERSION_EXTRA" "NixOS")
|
|
|
|
# Remove when https://github.com/NixOS/nixpkgs/issues/144170 is fixed
|
|
(lib.cmakeFeature "CMAKE_INSTALL_BINDIR" "bin")
|
|
(lib.cmakeFeature "CMAKE_INSTALL_DATADIR" "share")
|
|
(lib.cmakeFeature "CMAKE_INSTALL_DOCDIR" "share/doc/luanti")
|
|
(lib.cmakeFeature "CMAKE_INSTALL_MANDIR" "share/man")
|
|
(lib.cmakeFeature "CMAKE_INSTALL_LOCALEDIR" "share/locale")
|
|
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
doxygen
|
|
graphviz
|
|
ninja
|
|
];
|
|
|
|
buildInputs = [
|
|
jsoncpp
|
|
gettext
|
|
freetype
|
|
sqlite
|
|
curl
|
|
bzip2
|
|
ncurses
|
|
gmp
|
|
libspatialindex
|
|
]
|
|
++ lib.optional (lib.meta.availableOn stdenv.hostPlatform luajit) luajit
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
libiconv
|
|
]
|
|
++ lib.optionals buildClient [
|
|
libpng
|
|
libjpeg
|
|
libGLU
|
|
openal
|
|
libogg
|
|
libvorbis
|
|
]
|
|
++ lib.optionals (buildClient && useSDL2) [
|
|
SDL2
|
|
]
|
|
++ lib.optionals (buildClient && !stdenv.hostPlatform.isDarwin) [
|
|
xorg.libX11
|
|
xorg.libXi
|
|
]
|
|
++ lib.optionals buildServer [
|
|
leveldb
|
|
libpq
|
|
hiredis
|
|
prometheus-cpp
|
|
];
|
|
|
|
postInstall =
|
|
lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
patchShebangs $out
|
|
''
|
|
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
mkdir -p $out/Applications
|
|
mv $out/luanti.app $out/Applications
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
passthru.updateScript = gitUpdater {
|
|
allowedVersions = "\\.";
|
|
ignoredVersions = "-android$";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.luanti.org/";
|
|
description = "Open source voxel game engine (formerly Minetest)";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [
|
|
fpletz
|
|
fgaz
|
|
jk
|
|
];
|
|
mainProgram = if buildClient then "luanti" else "luantiserver";
|
|
};
|
|
})
|