nixpkgs/pkgs/games/openrct2/default.nix

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

96 lines
2.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
2020-08-15 23:45:29 +03:00
, SDL2, cmake, curl, duktape, fontconfig, freetype, icu, jansson, libGLU
2021-01-17 05:04:36 +03:00
, libiconv, libpng, libpthreadstubs, libzip, nlohmann_json, openssl, pkg-config
2020-10-01 23:56:44 +03:00
, speexdsp, zlib
2017-10-14 17:13:46 +03:00
}:
let
openrct2-version = "0.4.0";
# 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.2.7";
title-sequences-version = "0.4.0";
2017-10-14 17:13:46 +03:00
openrct2-src = fetchFromGitHub {
owner = "OpenRCT2";
repo = "OpenRCT2";
rev = "v${openrct2-version}";
sha256 = "sha256-4MDOLOPsKzk1vb1o/G90/NTyYJWBSrGRX6ZJETbBIaI=";
2018-07-14 01:51:03 +03:00
};
objects-src = fetchFromGitHub {
owner = "OpenRCT2";
repo = "objects";
rev = "v${objects-version}";
sha256 = "sha256-R4+rEdGdvYwFrkm/S3+zXmU+UDam51dI/pWKmFXNrbE=";
2017-10-14 17:13:46 +03:00
};
title-sequences-src = fetchFromGitHub {
owner = "OpenRCT2";
repo = "title-sequences";
rev = "v${title-sequences-version}";
sha256 = "sha256-anqCZkhYoaxPu3MYCYSsFFngOmPp2wnx2MGb0hj6W5U=";
2017-10-14 17:13:46 +03:00
};
in
2019-08-14 00:52:01 +03:00
stdenv.mkDerivation {
2020-04-21 19:26:05 +03:00
pname = "openrct2";
version = openrct2-version;
2017-10-14 17:13:46 +03:00
2017-11-04 17:18:47 +03:00
src = openrct2-src;
2017-10-14 17:13:46 +03:00
2019-10-29 07:35:54 +03:00
nativeBuildInputs = [
cmake
2021-01-17 05:04:36 +03:00
pkg-config
2019-10-29 07:35:54 +03:00
];
2017-10-14 17:13:46 +03:00
buildInputs = [
SDL2
curl
2020-08-15 23:45:29 +03:00
duktape
2017-10-14 17:13:46 +03:00
fontconfig
freetype
2018-07-14 01:51:03 +03:00
icu
2017-10-14 17:13:46 +03:00
jansson
2020-08-15 23:45:29 +03:00
libGLU
2017-10-14 17:13:46 +03:00
libiconv
libpng
libpthreadstubs
libzip
2020-10-01 23:56:44 +03:00
nlohmann_json
2017-10-14 17:13:46 +03:00
openssl
speexdsp
zlib
];
cmakeFlags = [
2018-07-14 01:51:03 +03:00
"-DDOWNLOAD_OBJECTS=OFF"
"-DDOWNLOAD_TITLE_SEQUENCES=OFF"
];
2017-10-14 17:13:46 +03:00
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)
'';
2017-10-14 17:13:46 +03:00
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;
2017-10-14 17:13:46 +03:00
platforms = platforms.linux;
maintainers = with maintainers; [ oxzi ];
2017-10-14 17:13:46 +03:00
};
}