My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/games/megaglest/default.nix

67 lines
2.1 KiB

{ lib, stdenv, cmake, pkg-config, git, curl, SDL2, xercesc, openal, lua, libvlc
, libjpeg, wxGTK30-gtk3, cppunit, ftgl, glew, libogg, libvorbis, buildEnv, libpng
, fontconfig, freetype, xorg, makeWrapper, bash, which, gnome, libGLU, glib
, fetchFromGitHub, fetchpatch
}:
let
version = "3.13.0";
lib-env = buildEnv {
name = "megaglest-lib-env";
paths = [ SDL2 xorg.libSM xorg.libICE xorg.libX11 xorg.libXext
xercesc openal libvorbis lua libjpeg libpng curl fontconfig ftgl freetype
stdenv.cc.cc glew libGLU wxGTK30-gtk3 ];
};
path-env = buildEnv {
name = "megaglest-path-env";
paths = [ bash which gnome.zenity ];
};
in
stdenv.mkDerivation {
pname = "megaglest";
inherit version;
src = fetchFromGitHub {
owner = "MegaGlest";
repo = "megaglest-source";
rev = version;
fetchSubmodules = true;
sha256 = "0fb58a706nic14ss89zrigphvdiwy5s9dwvhscvvgrfvjpahpcws";
};
patches = [
# Pull upstream fix for -fno-common toolchains
(fetchpatch {
name = "fno-common.patch";
url = "https://github.com/MegaGlest/megaglest-source/commit/5a3520540276a6fd06f7c88e571b6462978e3eab.patch";
sha256 = "0y554kjw56dikq87vs709pmq97hdx9hvqsk27f81v4g90m3b3qhi";
})
];
nativeBuildInputs = [ cmake pkg-config makeWrapper git ];
buildInputs = [ curl SDL2 xercesc openal lua libpng libjpeg libvlc wxGTK30-gtk3
glib cppunit fontconfig freetype ftgl glew libogg libvorbis libGLU ];
cmakeFlags = [
"-DCMAKE_INSTALL_PREFIX=${placeholder "out"}"
"-DBUILD_MEGAGLEST=On"
"-DBUILD_MEGAGLEST_MAP_EDITOR=On"
"-DBUILD_MEGAGLEST_MODEL_IMPORT_EXPORT_TOOLS=On"
"-DBUILD_MEGAGLEST_MODEL_VIEWER=On"
];
postInstall = ''
for i in $out/bin/*; do
wrapProgram $i \
--prefix LD_LIBRARY_PATH ":" "${lib-env}/lib" \
--prefix PATH ":" "${path-env}/bin"
done
'';
meta = with lib; {
description = "An entertaining free (freeware and free software) and open source cross-platform 3D real-time strategy (RTS) game";
license = licenses.gpl3;
homepage = "https://megaglest.org/";
maintainers = [ maintainers.matejc ];
platforms = platforms.linux;
};
}