2021-04-01 15:56:01 +01:00
|
|
|
{ lib, stdenv, fetchurl, fetchzip, cmake, SDL2, libpng, zlib, xz, freetype, fontconfig, libxdg_basedir
|
2016-01-16 14:56:00 +00:00
|
|
|
, withOpenGFX ? true, withOpenSFX ? true, withOpenMSX ? true
|
2016-08-19 22:43:34 +01:00
|
|
|
, withFluidSynth ? true, audioDriver ? "alsa", fluidsynth, soundfont-fluid, procps
|
2019-02-26 11:45:54 +00:00
|
|
|
, writeScriptBin, makeWrapper, runtimeShell
|
2016-01-16 14:56:00 +00:00
|
|
|
}:
|
2008-04-10 23:12:20 +01:00
|
|
|
|
2016-01-16 14:56:00 +00:00
|
|
|
let
|
|
|
|
opengfx = fetchzip {
|
2020-04-03 20:49:30 +01:00
|
|
|
url = "https://cdn.openttd.org/opengfx-releases/0.6.0/opengfx-0.6.0-all.zip";
|
|
|
|
sha256 = "1zg871j6kv7r0aqwca68d9kdf3smclgzan8hj76vj4fyfkykh173";
|
2016-01-16 14:56:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
opensfx = fetchzip {
|
2020-04-03 20:49:30 +01:00
|
|
|
url = "https://cdn.openttd.org/opensfx-releases/0.2.3/opensfx-0.2.3-all.zip";
|
2016-01-16 14:56:00 +00:00
|
|
|
sha256 = "1bb167kszdd6dqbcdjrxxwab6b7y7jilhzi3qijdhprpm5gf1lp3";
|
|
|
|
};
|
|
|
|
|
|
|
|
openmsx = fetchzip {
|
2020-04-03 20:49:30 +01:00
|
|
|
url = "https://cdn.openttd.org/openmsx-releases/0.3.1/openmsx-0.3.1-all.zip";
|
2016-01-16 14:56:00 +00:00
|
|
|
sha256 = "0qnmfzz0v8vxrrvxnm7szphrlrlvhkwn3y92b4iy0b4b6yam0yd4";
|
|
|
|
};
|
|
|
|
|
2016-08-19 22:43:34 +01:00
|
|
|
playmidi = writeScriptBin "playmidi" ''
|
2019-02-26 11:45:54 +00:00
|
|
|
#!${runtimeShell}
|
2016-08-19 22:43:34 +01:00
|
|
|
trap "${procps}/bin/pkill fluidsynth" EXIT
|
|
|
|
${fluidsynth}/bin/fluidsynth -a ${audioDriver} -i ${soundfont-fluid}/share/soundfonts/FluidR3_GM2-2.sf2 $*
|
|
|
|
'';
|
|
|
|
|
2016-01-16 14:56:00 +00:00
|
|
|
in
|
2008-04-10 23:12:20 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "openttd";
|
2021-04-01 15:56:01 +01:00
|
|
|
version = "1.11.0";
|
2008-04-10 23:12:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-04-03 20:49:30 +01:00
|
|
|
url = "https://cdn.openttd.org/openttd-releases/${version}/${pname}-${version}-source.tar.xz";
|
2021-04-01 15:56:01 +01:00
|
|
|
sha256 = "sha256-XmUYTgc2i6Gvpi27PjWrrubE2mcw/0vJ60RH1TNjx6g=";
|
2008-04-10 23:12:20 +01:00
|
|
|
};
|
|
|
|
|
2021-04-01 15:56:01 +01:00
|
|
|
nativeBuildInputs = [ cmake makeWrapper ];
|
2020-06-01 18:09:11 +01:00
|
|
|
buildInputs = [ SDL2 libpng xz zlib freetype fontconfig libxdg_basedir ]
|
2021-01-15 04:31:39 +00:00
|
|
|
++ lib.optionals withFluidSynth [ fluidsynth soundfont-fluid ];
|
2016-01-16 14:56:00 +00:00
|
|
|
|
2008-04-10 23:12:20 +01:00
|
|
|
prefixKey = "--prefix-dir=";
|
2012-10-05 07:32:34 +01:00
|
|
|
|
2013-09-28 23:29:26 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--without-liblzo2"
|
|
|
|
];
|
2012-10-05 07:32:34 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
2021-01-15 04:31:39 +00:00
|
|
|
${lib.optionalString withOpenGFX ''
|
2016-01-16 14:56:00 +00:00
|
|
|
cp ${opengfx}/* $out/share/games/openttd/baseset
|
|
|
|
''}
|
|
|
|
|
|
|
|
mkdir -p $out/share/games/openttd/data
|
|
|
|
|
2021-01-15 04:31:39 +00:00
|
|
|
${lib.optionalString withOpenSFX ''
|
2016-01-16 14:56:00 +00:00
|
|
|
cp ${opensfx}/*.{obs,cat} $out/share/games/openttd/data
|
|
|
|
''}
|
|
|
|
|
2016-08-19 22:40:06 +01:00
|
|
|
mkdir $out/share/games/openttd/baseset/openmsx
|
|
|
|
|
2021-01-15 04:31:39 +00:00
|
|
|
${lib.optionalString withOpenMSX ''
|
2016-08-19 22:40:06 +01:00
|
|
|
cp ${openmsx}/*.{obm,mid} $out/share/games/openttd/baseset/openmsx
|
2016-01-16 14:56:00 +00:00
|
|
|
''}
|
2016-08-19 22:40:06 +01:00
|
|
|
|
2021-01-15 04:31:39 +00:00
|
|
|
${lib.optionalString withFluidSynth ''
|
2016-08-19 22:43:34 +01:00
|
|
|
wrapProgram $out/bin/openttd \
|
|
|
|
--add-flags -m \
|
|
|
|
--add-flags extmidi:cmd=${playmidi}/bin/playmidi
|
|
|
|
''}
|
2012-10-05 07:32:34 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = ''Open source clone of the Microprose game "Transport Tycoon Deluxe"'';
|
2012-10-05 17:36:36 +01:00
|
|
|
longDescription = ''
|
|
|
|
OpenTTD is a transportation economics simulator. In single player mode,
|
2013-09-28 23:29:26 +01:00
|
|
|
players control a transportation business, and use rail, road, sea, and air
|
|
|
|
transport to move goods and people around the simulated world.
|
2012-10-05 17:36:36 +01:00
|
|
|
|
|
|
|
In multiplayer networked mode, players may:
|
|
|
|
- play competitively as different businesses
|
2014-12-30 02:31:03 +00:00
|
|
|
- play cooperatively controlling the same business
|
2012-10-05 17:36:36 +01:00
|
|
|
- observe as spectators
|
|
|
|
'';
|
2020-04-03 20:49:30 +01:00
|
|
|
homepage = "https://www.openttd.org/";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2020-05-09 10:25:07 +01:00
|
|
|
maintainers = with maintainers; [ jcumming fpletz ];
|
2008-04-10 23:12:20 +01:00
|
|
|
};
|
|
|
|
}
|