nixpkgs/pkgs/games/openttd/default.nix

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

92 lines
2.9 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fetchzip, cmake, SDL2, libpng, zlib, xz, freetype, fontconfig
, withOpenGFX ? true, withOpenSFX ? true, withOpenMSX ? true
2016-08-19 21:43:34 +00:00
, withFluidSynth ? true, audioDriver ? "alsa", fluidsynth, soundfont-fluid, procps
, writeScriptBin, makeWrapper, runtimeShell
}:
let
opengfx = fetchzip {
2021-10-18 08:09:31 +00:00
url = "https://cdn.openttd.org/opengfx-releases/7.1/opengfx-7.1-all.zip";
sha256 = "sha256-daJ/Qwg/okpmLQkXcCjruIiP8GEwyyp02YWcGQepxzs=";
};
opensfx = fetchzip {
2021-11-10 09:05:46 +00:00
url = "https://cdn.openttd.org/opensfx-releases/1.0.3/opensfx-1.0.3-all.zip";
sha256 = "sha256-QmfXizrRTu/fUcVOY7tCndv4t4BVW+fb0yUi8LgSYzM=";
};
openmsx = fetchzip {
2021-10-18 08:09:31 +00:00
url = "https://cdn.openttd.org/openmsx-releases/0.4.2/openmsx-0.4.2-all.zip";
sha256 = "sha256-Cgrg2m+uTODFg39mKgX+hE8atV7v5bVyZd716vSZB8M=";
};
2016-08-19 21:43:34 +00:00
playmidi = writeScriptBin "playmidi" ''
#!${runtimeShell}
2016-08-19 21:43:34 +00:00
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";
2023-04-14 06:22:22 +00:00
version = "13.1";
src = fetchurl {
2020-04-03 19:49:30 +00:00
url = "https://cdn.openttd.org/openttd-releases/${version}/${pname}-${version}-source.tar.xz";
2023-04-14 06:22:22 +00:00
hash = "sha256-Xt8i03A1I4KF72cql9WeZCgL66sj5YR4CDTM1r4KWLs=";
};
2021-04-01 14:56:01 +00:00
nativeBuildInputs = [ cmake makeWrapper ];
buildInputs = [ SDL2 libpng xz zlib freetype fontconfig ]
2021-01-15 04:31:39 +00:00
++ lib.optionals withFluidSynth [ fluidsynth soundfont-fluid ];
prefixKey = "--prefix-dir=";
configureFlags = [
"--without-liblzo2"
];
postInstall = ''
2021-01-15 04:31:39 +00:00
${lib.optionalString withOpenGFX ''
cp ${opengfx}/*.tar $out/share/games/openttd/baseset
''}
mkdir -p $out/share/games/openttd/data
2021-01-15 04:31:39 +00:00
${lib.optionalString withOpenSFX ''
cp ${opensfx}/*.tar $out/share/games/openttd/data
''}
2016-08-19 21:40:06 +00:00
mkdir $out/share/games/openttd/baseset/openmsx
2021-01-15 04:31:39 +00:00
${lib.optionalString withOpenMSX ''
cp ${openmsx}/*.tar $out/share/games/openttd/baseset/openmsx
''}
2016-08-19 21:40:06 +00:00
2021-01-15 04:31:39 +00:00
${lib.optionalString withFluidSynth ''
2016-08-19 21:43:34 +00:00
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"'';
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
'';
2020-04-03 19:49:30 +00:00
homepage = "https://www.openttd.org/";
2023-02-05 22:18:41 +00:00
changelog = "https://cdn.openttd.org/openttd-releases/${version}/changelog.txt";
2020-04-03 19:49:30 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ jcumming fpletz ];
};
}