nixpkgs/pkgs/games/openttd/default.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

162 lines
3.5 KiB
Nix

{
lib,
stdenv,
fetchzip,
cmake,
pkg-config,
SDL2,
libpng,
zlib,
xz,
freetype,
fontconfig,
nlohmann_json,
curl,
icu,
harfbuzz,
expat,
glib,
pcre2,
withOpenGFX ? true,
withOpenSFX ? true,
withOpenMSX ? true,
withFluidSynth ? true,
audioDriver ? "alsa",
fluidsynth,
soundfont-fluid,
libsndfile,
flac,
libogg,
libvorbis,
libopus,
libmpg123,
pulseaudio,
alsa-lib,
libjack2,
procps,
writeScriptBin,
makeWrapper,
runtimeShell,
}:
let
opengfx = fetchzip {
url = "https://cdn.openttd.org/opengfx-releases/7.1/opengfx-7.1-all.zip";
sha256 = "sha256-daJ/Qwg/okpmLQkXcCjruIiP8GEwyyp02YWcGQepxzs=";
};
opensfx = fetchzip {
url = "https://cdn.openttd.org/opensfx-releases/1.0.3/opensfx-1.0.3-all.zip";
sha256 = "sha256-QmfXizrRTu/fUcVOY7tCndv4t4BVW+fb0yUi8LgSYzM=";
};
openmsx = fetchzip {
url = "https://cdn.openttd.org/openmsx-releases/0.4.2/openmsx-0.4.2-all.zip";
sha256 = "sha256-Cgrg2m+uTODFg39mKgX+hE8atV7v5bVyZd716vSZB8M=";
};
playmidi = writeScriptBin "playmidi" ''
#!${runtimeShell}
trap "${procps}/bin/pkill fluidsynth" EXIT
${fluidsynth}/bin/fluidsynth -a ${audioDriver} -i ${soundfont-fluid}/share/soundfonts/FluidR3_GM2-2.sf2 $*
'';
in
stdenv.mkDerivation rec {
pname = "openttd";
version = "14.1";
src = fetchzip {
url = "https://cdn.openttd.org/openttd-releases/${version}/${pname}-${version}-source.tar.xz";
hash = "sha256-YT4IE/rJ9pnpeMWKbOra6AbSUwW19RwOKlXkxwoMeKY=";
};
nativeBuildInputs = [
cmake
pkg-config
makeWrapper
];
buildInputs =
[
SDL2
libpng
xz
zlib
freetype
fontconfig
nlohmann_json
curl
icu
harfbuzz
expat
glib
pcre2
]
++ lib.optionals withFluidSynth [
fluidsynth
soundfont-fluid
libsndfile
flac
libogg
libvorbis
libopus
libmpg123
pulseaudio
alsa-lib
libjack2
];
prefixKey = "--prefix-dir=";
configureFlags = [
"--without-liblzo2"
];
postInstall = ''
${lib.optionalString withOpenGFX ''
cp ${opengfx}/*.tar $out/share/games/openttd/baseset
''}
mkdir -p $out/share/games/openttd/data
${lib.optionalString withOpenSFX ''
cp ${opensfx}/*.tar $out/share/games/openttd/data
''}
mkdir $out/share/games/openttd/baseset/openmsx
${lib.optionalString withOpenMSX ''
cp ${openmsx}/*.tar $out/share/games/openttd/baseset/openmsx
''}
${lib.optionalString withFluidSynth ''
wrapProgram $out/bin/openttd \
--add-flags -m \
--add-flags extmidi:cmd=${playmidi}/bin/playmidi
''}
'';
meta = with lib; {
description = ''Open source clone of the Microprose game "Transport Tycoon Deluxe"'';
mainProgram = "openttd";
longDescription = ''
OpenTTD is a transportation economics simulator. In single player mode,
players control a transportation business, and use rail, road, sea, and air
transport to move goods and people around the simulated world.
In multiplayer networked mode, players may:
- play competitively as different businesses
- play cooperatively controlling the same business
- observe as spectators
'';
homepage = "https://www.openttd.org/";
changelog = "https://cdn.openttd.org/openttd-releases/${version}/changelog.txt";
license = licenses.gpl2Only;
platforms = platforms.linux;
maintainers = with maintainers; [
jcumming
fpletz
];
};
}