mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 05:29:20 +03:00
opensurge: init at 0.6.1.2
Signed-off-by: Federico Damián Schonborn <federicoschonborn@disroot.org>
This commit is contained in:
parent
cb2436316f
commit
ba28a10b1a
1 changed files with 64 additions and 0 deletions
64
pkgs/by-name/op/opensurge/package.nix
Normal file
64
pkgs/by-name/op/opensurge/package.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
})
|
Loading…
Add table
Add a link
Reference in a new issue