diff options
author | Kjartan Oli Agustsson <kjartanoli@outlook.com> | 2025-06-08 16:51:37 +0000 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-06-09 11:16:14 +0200 |
commit | 44b618b7e788f49a2b000ed45e34016f1d89c5b2 (patch) | |
tree | a54600e2a202340d11ff0dfd34bed792daca8a1f /gnu/packages/games.scm | |
parent | 93761c731cd3ac5fb74a50b26c4af7cdcf65aeb3 (diff) |
gnu: freerct: Update to 0.1-0.f85335d.
* gnu/packages/games.scm (freerct): Update to 0.1-0.f85335d.
[source]: Change URL to Codebergo.
Change-Id: I45280e9e117f40ad9f3b9cae7731271c2b2d34a5
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 46 |
1 files changed, 24 insertions, 22 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 9381ea8588..d62e6b6dc1 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -12842,27 +12842,29 @@ the map.") (license license:expat)))) (define-public freerct - (package - (name "freerct") - (version "0.1") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/FreeRCT/FreeRCT") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1szwy2cq4ffp4yxm9pp9vdyia0i5nz0wnppdd1xb9w7v3wa4mywi")))) - (build-system cmake-build-system) - (arguments - `(#:tests? #f)) - (native-inputs (list flex bison)) - (inputs (list libpng sdl2 sdl2-ttf)) - (home-page "https://freerct.net/") - (synopsis "Theme park management simulation game") - (description - "FreeRCT is a game that captures the look and feel of the popular games + (let ((commit "f85335dc98cdb28081b38cdf23409ac8a91d9a66") + (revision "0")) + (package + (name "freerct") + (version (git-version "0.1" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://codeberg.org/FreeRCT/FreeRCT") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1mimwgw487dxr2h1kxciwz34hk06g1lfgpicrav7khh19843a2fq")))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f)) + (native-inputs (list flex bison)) + (inputs (list libpng glfw glew freetype)) + (home-page "https://freerct.net/") + (synopsis "Theme park management simulation game") + (description + "FreeRCT is a game that captures the look and feel of the popular games RollerCoaster Tycoon 1 and 2, graphics- and gameplay-wise. In this game, you play as a manager of a theme park, allowing you to make a @@ -12871,7 +12873,7 @@ finances, landscaping, and most importantly: rides. Good managers follow the principle of prioritizing the guests' happiness with a well-maintained park. Should they go unwise, a theme park plunge into chaos with vandalizing guests and unsafe rides. Which path will you take?") - (license license:gpl2))) + (license license:gpl2)))) (define-public ultrastar-deluxe (package |