mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
c99706f826
- Split included arguments into lines for more readable diffs. - Include flac/ogg/vorbis, as they are now required. - Include discord-rpc and gbenchmark as their absence disabled those features, especially Discord support for those who might want it. https://github.com/OpenRCT2/OpenRCT2/releases/tag/v0.4.1
121 lines
2.5 KiB
Nix
121 lines
2.5 KiB
Nix
{ lib, stdenv, fetchFromGitHub
|
|
|
|
, 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
|
|
}:
|
|
|
|
let
|
|
openrct2-version = "0.4.1";
|
|
|
|
# Those versions MUST match the pinned versions within the CMakeLists.txt
|
|
# file. The REPLAYS repository from the CMakeLists.txt is not necessary.
|
|
objects-version = "1.3.2";
|
|
title-sequences-version = "0.4.0";
|
|
|
|
openrct2-src = fetchFromGitHub {
|
|
owner = "OpenRCT2";
|
|
repo = "OpenRCT2";
|
|
rev = "v${openrct2-version}";
|
|
sha256 = "sha256-fMs0zrMzv9jXreZE4QyYIdvWUU/FUFVPuo4EzAF/2rU=";
|
|
};
|
|
|
|
objects-src = fetchFromGitHub {
|
|
owner = "OpenRCT2";
|
|
repo = "objects";
|
|
rev = "v${objects-version}";
|
|
sha256 = "sha256-BG0IRiNb2l6/3P7tvuUqMoYNh1zkOS0lCFDDh7m9Q7Y=";
|
|
};
|
|
|
|
title-sequences-src = fetchFromGitHub {
|
|
owner = "OpenRCT2";
|
|
repo = "title-sequences";
|
|
rev = "v${title-sequences-version}";
|
|
sha256 = "sha256-anqCZkhYoaxPu3MYCYSsFFngOmPp2wnx2MGb0hj6W5U=";
|
|
};
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "openrct2";
|
|
version = openrct2-version;
|
|
|
|
src = openrct2-src;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
curl
|
|
discord-rpc
|
|
duktape
|
|
flac
|
|
fontconfig
|
|
freetype
|
|
gbenchmark
|
|
icu
|
|
jansson
|
|
libGLU
|
|
libiconv
|
|
libogg
|
|
libpng
|
|
libpthreadstubs
|
|
libvorbis
|
|
libzip
|
|
nlohmann_json
|
|
openssl
|
|
speexdsp
|
|
zlib
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DDOWNLOAD_OBJECTS=OFF"
|
|
"-DDOWNLOAD_TITLE_SEQUENCES=OFF"
|
|
];
|
|
|
|
postUnpack = ''
|
|
cp -r ${objects-src} $sourceRoot/data/object
|
|
cp -r ${title-sequences-src} $sourceRoot/data/sequence
|
|
'';
|
|
|
|
preConfigure = ''
|
|
# Verify that the correct version of each third party repository is used.
|
|
|
|
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)
|
|
'';
|
|
|
|
preFixup = "ln -s $out/share/openrct2 $out/bin/data";
|
|
|
|
meta = with lib; {
|
|
description = "Open source re-implementation of RollerCoaster Tycoon 2 (original game required)";
|
|
homepage = "https://openrct2.io/";
|
|
downloadPage = "https://github.com/OpenRCT2/OpenRCT2/releases";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ oxzi ];
|
|
};
|
|
}
|