2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub
|
2022-07-05 23:44:44 +02:00
|
|
|
|
|
|
|
, SDL2
|
|
|
|
, cmake
|
|
|
|
, curl
|
|
|
|
, discord-rpc
|
|
|
|
, duktape
|
|
|
|
, flac
|
|
|
|
, fontconfig
|
|
|
|
, freetype
|
|
|
|
, gbenchmark
|
|
|
|
, icu
|
|
|
|
, jansson
|
|
|
|
, libGLU
|
|
|
|
, libiconv
|
|
|
|
, libogg
|
|
|
|
, libpng
|
|
|
|
, libpthreadstubs
|
|
|
|
, libvorbis
|
|
|
|
, libzip
|
|
|
|
, nlohmann_json
|
|
|
|
, openssl
|
|
|
|
, pkg-config
|
|
|
|
, speexdsp
|
|
|
|
, zlib
|
2017-10-14 16:13:46 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2022-07-05 23:44:44 +02:00
|
|
|
openrct2-version = "0.4.1";
|
2021-11-08 10:44:15 +01:00
|
|
|
|
|
|
|
# Those versions MUST match the pinned versions within the CMakeLists.txt
|
|
|
|
# file. The REPLAYS repository from the CMakeLists.txt is not necessary.
|
2022-07-05 23:44:44 +02:00
|
|
|
objects-version = "1.3.2";
|
2022-04-25 21:37:51 +02:00
|
|
|
title-sequences-version = "0.4.0";
|
2017-10-14 16:13:46 +02:00
|
|
|
|
|
|
|
openrct2-src = fetchFromGitHub {
|
|
|
|
owner = "OpenRCT2";
|
|
|
|
repo = "OpenRCT2";
|
2021-11-08 10:44:15 +01:00
|
|
|
rev = "v${openrct2-version}";
|
2022-07-05 23:44:44 +02:00
|
|
|
sha256 = "sha256-fMs0zrMzv9jXreZE4QyYIdvWUU/FUFVPuo4EzAF/2rU=";
|
2018-07-14 00:51:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
objects-src = fetchFromGitHub {
|
|
|
|
owner = "OpenRCT2";
|
|
|
|
repo = "objects";
|
2021-11-08 10:44:15 +01:00
|
|
|
rev = "v${objects-version}";
|
2022-07-05 23:44:44 +02:00
|
|
|
sha256 = "sha256-BG0IRiNb2l6/3P7tvuUqMoYNh1zkOS0lCFDDh7m9Q7Y=";
|
2017-10-14 16:13:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
title-sequences-src = fetchFromGitHub {
|
|
|
|
owner = "OpenRCT2";
|
|
|
|
repo = "title-sequences";
|
2021-11-08 10:44:15 +01:00
|
|
|
rev = "v${title-sequences-version}";
|
2022-04-25 21:37:51 +02:00
|
|
|
sha256 = "sha256-anqCZkhYoaxPu3MYCYSsFFngOmPp2wnx2MGb0hj6W5U=";
|
2017-10-14 16:13:46 +02:00
|
|
|
};
|
|
|
|
in
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2020-04-21 18:26:05 +02:00
|
|
|
pname = "openrct2";
|
2021-11-08 10:44:15 +01:00
|
|
|
version = openrct2-version;
|
2017-10-14 16:13:46 +02:00
|
|
|
|
2017-11-04 15:18:47 +01:00
|
|
|
src = openrct2-src;
|
2017-10-14 16:13:46 +02:00
|
|
|
|
2019-10-29 05:35:54 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2021-01-17 03:04:36 +01:00
|
|
|
pkg-config
|
2019-10-29 05:35:54 +01:00
|
|
|
];
|
|
|
|
|
2017-10-14 16:13:46 +02:00
|
|
|
buildInputs = [
|
|
|
|
SDL2
|
|
|
|
curl
|
2022-07-05 23:44:44 +02:00
|
|
|
discord-rpc
|
2020-08-15 22:45:29 +02:00
|
|
|
duktape
|
2022-07-05 23:44:44 +02:00
|
|
|
flac
|
2017-10-14 16:13:46 +02:00
|
|
|
fontconfig
|
|
|
|
freetype
|
2022-07-05 23:44:44 +02:00
|
|
|
gbenchmark
|
2018-07-14 00:51:03 +02:00
|
|
|
icu
|
2017-10-14 16:13:46 +02:00
|
|
|
jansson
|
2020-08-15 22:45:29 +02:00
|
|
|
libGLU
|
2017-10-14 16:13:46 +02:00
|
|
|
libiconv
|
2022-07-05 23:44:44 +02:00
|
|
|
libogg
|
2017-10-14 16:13:46 +02:00
|
|
|
libpng
|
|
|
|
libpthreadstubs
|
2022-07-05 23:44:44 +02:00
|
|
|
libvorbis
|
2017-10-14 16:13:46 +02:00
|
|
|
libzip
|
2020-10-01 22:56:44 +02:00
|
|
|
nlohmann_json
|
2017-10-14 16:13:46 +02:00
|
|
|
openssl
|
|
|
|
speexdsp
|
|
|
|
zlib
|
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
2018-07-14 00:51:03 +02:00
|
|
|
"-DDOWNLOAD_OBJECTS=OFF"
|
|
|
|
"-DDOWNLOAD_TITLE_SEQUENCES=OFF"
|
|
|
|
];
|
2017-10-14 16:13:46 +02:00
|
|
|
|
2021-07-19 21:41:55 +02:00
|
|
|
postUnpack = ''
|
|
|
|
cp -r ${objects-src} $sourceRoot/data/object
|
|
|
|
cp -r ${title-sequences-src} $sourceRoot/data/sequence
|
|
|
|
'';
|
|
|
|
|
2021-11-08 10:44:15 +01:00
|
|
|
preConfigure = ''
|
2021-11-22 00:02:47 +01:00
|
|
|
# Verify that the correct version of each third party repository is used.
|
2021-11-08 10:44:15 +01:00
|
|
|
|
|
|
|
grep -q '^set(OBJECTS_VERSION "${objects-version}")$' CMakeLists.txt \
|
|
|
|
|| (echo "OBJECTS_VERSION differs!"; exit 1)
|
|
|
|
grep -q '^set(TITLE_SEQUENCE_VERSION "${title-sequences-version}")$' CMakeLists.txt \
|
|
|
|
|| (echo "TITLE_SEQUENCE_VERSION differs!"; exit 1)
|
|
|
|
'';
|
|
|
|
|
2017-10-14 16:13:46 +02:00
|
|
|
preFixup = "ln -s $out/share/openrct2 $out/bin/data";
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2021-07-19 21:41:55 +02:00
|
|
|
description = "Open source re-implementation of RollerCoaster Tycoon 2 (original game required)";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://openrct2.io/";
|
2021-11-22 00:02:47 +01:00
|
|
|
downloadPage = "https://github.com/OpenRCT2/OpenRCT2/releases";
|
2021-07-19 21:41:55 +02:00
|
|
|
license = licenses.gpl3Only;
|
2017-10-14 16:13:46 +02:00
|
|
|
platforms = platforms.linux;
|
2020-08-15 15:25:59 +02:00
|
|
|
maintainers = with maintainers; [ oxzi ];
|
2017-10-14 16:13:46 +02:00
|
|
|
};
|
|
|
|
}
|