nixos-config/pkgs/freerct.nix

25 lines
612 B
Nix
Raw Normal View History

2022-05-11 14:40:41 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, libpng, SDL2, SDL2_ttf, flex, bison }:
stdenv.mkDerivation rec {
pname = "freerct";
version = "0.1";
src = fetchFromGitHub {
owner = "FreeRCT";
repo = "FreeRCT";
rev = version;
sha256 = "sha256-kftKFB/78LR6aO1ey8G3JQIVfdvp3lS7J9c5gpnw/Os=";
};
nativeBuildInputs = [ cmake ];
2022-05-11 14:40:41 +00:00
buildInputs = [ libpng SDL2 SDL2_ttf flex bison ];
2022-05-11 14:40:41 +00:00
meta = with lib; {
homepage = "https://freerct.net/";
description =
"Free and open source game aiming to capture the look and feel of RollerCoaster Tycoon.";
2022-05-11 14:40:41 +00:00
license = licenses.gpl2Only;
};
}