opensurge: init at 0.6.1.2

Signed-off-by: Federico Damián Schonborn <federicoschonborn@disroot.org>
This commit is contained in:
Federico Damián Schonborn 2025-04-18 13:14:12 -03:00
parent cb2436316f
commit ba28a10b1a
No known key found for this signature in database

View file

@ -0,0 +1,64 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
ninja,
allegro5,
libglvnd,
surgescript,
physfs,
xorg,
versionCheckHook,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "opensurge";
version = "0.6.1.2";
src = fetchFromGitHub {
owner = "alemart";
repo = "opensurge";
tag = "v${finalAttrs.version}";
hash = "sha256-HvpKZ62mYy7XkZOnIn7QRA2rFVREFnKO1NO83aCR76k=";
};
nativeBuildInputs = [
cmake
ninja
];
buildInputs = [
allegro5
libglvnd
physfs
surgescript
xorg.libX11
];
cmakeFlags = [
"-DGAME_BINDIR=${placeholder "out"}/bin"
"-DDESKTOP_ICON_PATH=${placeholder "out"}/share/pixmaps"
"-DDESKTOP_METAINFO_PATH=${placeholder "out"}/share/metainfo"
"-DDESKTOP_ENTRY_PATH=${placeholder "out"}/share/applications"
"-DWANT_BUILD_DATE=OFF"
];
nativeInstallCheckInputs = [ versionCheckHook ];
# Darwin fails with "Critical error: required built-in appearance SystemAppearance not found"
doInstallCheck = !stdenv.hostPlatform.isDarwin;
passthru.updateScript = nix-update-script { };
meta = {
mainProgram = "opensurge";
description = "Fun 2D retro platformer inspired by Sonic games and a game creation system";
homepage = "https://opensurge2d.org/";
downloadPage = "https://github.com/alemart/opensurge";
changelog = "https://github.com/alemart/opensurge/blob/v${finalAttrs.version}/CHANGES.md";
license = lib.licenses.gpl3Only;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ federicoschonborn ];
};
})