nixpkgs/pkgs/games/minetest/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

144 lines
3.6 KiB
Nix
Raw Normal View History

2022-07-31 21:52:47 +00:00
{ lib
, stdenv
, fetchFromGitHub
, cmake
, irrlichtmt
, coreutils
, libpng
, bzip2
, curl
, libogg
, jsoncpp
, libjpeg
, libXxf86vm
, libGLU
, libGL
, openal
, libvorbis
, sqlite
, luajit
, freetype
, gettext
, doxygen
, ncurses
, graphviz
, xorg
, gmp
, libspatialindex
, leveldb
, postgresql
, hiredis
, libiconv
, zlib
, libXrandr
, libX11
, ninja
, prometheus-cpp
, OpenGL
, OpenAL ? openal
, Carbon
, Cocoa
, withTouchSupport ? false
}:
2013-01-04 10:39:11 +00:00
2021-01-15 04:31:39 +00:00
with lib;
2013-01-04 10:39:11 +00:00
let
boolToCMake = b: if b then "ON" else "OFF";
irrlichtmtInput = irrlichtmt.override { inherit withTouchSupport; };
2022-02-04 14:58:32 +00:00
generic = { version, rev ? version, sha256, dataRev ? version, dataSha256, buildClient ? true, buildServer ? false }: let
sources = {
src = fetchFromGitHub {
owner = "minetest";
repo = "minetest";
inherit rev sha256;
};
data = fetchFromGitHub {
owner = "minetest";
repo = "minetest_game";
rev = dataRev;
sha256 = dataSha256;
};
2013-01-04 10:39:11 +00:00
};
in stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "minetest";
inherit version;
src = sources.src;
cmakeFlags = [
2022-02-04 14:58:32 +00:00
"-G Ninja"
"-DBUILD_CLIENT=${boolToCMake buildClient}"
"-DBUILD_SERVER=${boolToCMake buildServer}"
"-DENABLE_GETTEXT=1"
2022-02-04 14:58:32 +00:00
"-DENABLE_SPATIAL=1"
"-DENABLE_SYSTEM_JSONCPP=1"
"-DIRRLICHT_INCLUDE_DIR=${irrlichtmtInput.dev}/include/irrlichtmt"
2022-02-04 14:58:32 +00:00
# Remove when https://github.com/NixOS/nixpkgs/issues/144170 is fixed
"-DCMAKE_INSTALL_BINDIR=bin"
"-DCMAKE_INSTALL_DATADIR=share"
"-DCMAKE_INSTALL_DOCDIR=share/doc"
"-DCMAKE_INSTALL_DOCDIR=share/doc"
"-DCMAKE_INSTALL_MANDIR=share/man"
"-DCMAKE_INSTALL_LOCALEDIR=share/locale"
] ++ optionals buildClient [
"-DOpenGL_GL_PREFERENCE=GLVND"
2022-02-04 14:58:32 +00:00
] ++ optionals buildServer [
"-DENABLE_PROMETHEUS=1"
] ++ optionals withTouchSupport [
"-DENABLE_TOUCH=TRUE"
];
2020-07-11 13:33:23 +00:00
2019-10-30 11:34:47 +00:00
NIX_CFLAGS_COMPILE = "-DluaL_reg=luaL_Reg"; # needed since luajit-2.1.0-beta3
2022-02-04 14:58:32 +00:00
nativeBuildInputs = [ cmake doxygen graphviz ninja ];
buildInputs = [
irrlichtmtInput luajit jsoncpp gettext freetype sqlite curl bzip2 ncurses
2020-01-30 21:35:00 +00:00
gmp libspatialindex
2020-07-11 13:33:23 +00:00
] ++ optionals stdenv.isDarwin [
libiconv OpenGL OpenAL Carbon Cocoa
] ++ optionals buildClient [
2019-11-10 16:44:34 +00:00
libpng libjpeg libGLU libGL openal libogg libvorbis xorg.libX11 libXxf86vm
] ++ optionals buildServer [
2022-02-04 14:58:32 +00:00
leveldb postgresql hiredis prometheus-cpp
];
2022-07-31 21:52:47 +00:00
postPatch = ''
substituteInPlace src/filesys.cpp --replace "/bin/rm" "${coreutils}/bin/rm"
'';
postInstall = ''
mkdir -pv $out/share/minetest/games/minetest_game/
cp -rv ${sources.data}/* $out/share/minetest/games/minetest_game/
2022-07-31 21:52:47 +00:00
patchShebangs $out
'';
meta = with lib; {
homepage = "http://minetest.net/";
description = "Infinite-world block sandbox game";
license = licenses.lgpl21Plus;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ pyrolagus fpletz ];
# never built on Hydra
# https://hydra.nixos.org/job/nixpkgs/trunk/minetestclient_4.x86_64-darwin
# https://hydra.nixos.org/job/nixpkgs/trunk/minetestserver_4.x86_64-darwin
broken = (lib.versionOlder version "5.0.0") && stdenv.isDarwin;
2013-01-04 10:39:11 +00:00
};
};
v5 = {
2022-07-31 21:35:18 +00:00
version = "5.5.1";
sha256 = "sha256-ssaDy6tYxhXGZ1+05J5DwoKYnfhKIKtZj66DOV84WxA=";
dataSha256 = "sha256-SI6I1wXbB0CgTmIemm3VY9DNnWMoI5bt/hqRwHlUl4k=";
};
in {
minetestclient_5 = generic (v5 // { buildClient = true; buildServer = false; });
minetestserver_5 = generic (v5 // { buildClient = false; buildServer = true; });
2013-01-04 10:39:11 +00:00
}