Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
95 lines
1.9 KiB
Nix
95 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
doxygen,
|
|
graphviz,
|
|
makeWrapper,
|
|
boost,
|
|
SDL2,
|
|
python3,
|
|
freetype,
|
|
openal,
|
|
libogg,
|
|
libvorbis,
|
|
zlib,
|
|
libpng,
|
|
libtiff,
|
|
libjpeg,
|
|
libGLU,
|
|
libGL,
|
|
glew,
|
|
libxslt,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "freeorion";
|
|
version = "0.5.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "freeorion";
|
|
repo = "freeorion";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-0z3EPiSlViWQzpUu6+4IZ3ih0pbwdkZWAiVPsVcJr8o=";
|
|
};
|
|
|
|
buildInputs = [
|
|
(boost.override {
|
|
enablePython = true;
|
|
python = python3;
|
|
})
|
|
(python3.withPackages (p: with p; [ pycodestyle ]))
|
|
SDL2
|
|
freetype
|
|
glew
|
|
libGL
|
|
libGLU
|
|
libjpeg
|
|
libogg
|
|
libpng
|
|
libtiff
|
|
libvorbis
|
|
openal
|
|
zlib
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
doxygen
|
|
graphviz
|
|
makeWrapper
|
|
];
|
|
|
|
# as of 0.5.0.1 FreeOrion doesn't work with "-DOpenGL_GL_PREFERENCE=GLVND"
|
|
cmakeFlags = [ "-DOpenGL_GL_PREFERENCE=LEGACY" ];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/libexec
|
|
# We need final slashes for XSLT replace to work properly
|
|
substitute ${./fix-paths.xslt} $out/share/freeorion/fix-paths.xslt \
|
|
--subst-var-by nixStore "$NIX_STORE/" \
|
|
--subst-var-by out "$out/"
|
|
substitute ${./fix-paths.sh} $out/libexec/fix-paths \
|
|
--subst-var-by libxsltBin ${libxslt.bin} \
|
|
--subst-var-by shell ${stdenv.shell} \
|
|
--subst-var out
|
|
chmod +x $out/libexec/fix-paths
|
|
|
|
wrapProgram $out/bin/freeorion \
|
|
--run $out/libexec/fix-paths \
|
|
--prefix LD_LIBRARY_PATH : $out/lib/freeorion
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Free, open source, turn-based space empire and galactic conquest (4X) computer game";
|
|
homepage = "https://www.freeorion.org/";
|
|
license = with licenses; [
|
|
gpl2Only
|
|
cc-by-sa-30
|
|
];
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ tex ];
|
|
};
|
|
})
|