mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
03a516ee2e
rigel-engine: remove finalAttrs & move SDL2 to buildInputs rigel-engine: remove git input
45 lines
920 B
Nix
45 lines
920 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
SDL2,
|
|
SDL2_mixer,
|
|
buildOpenGLES ? false,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "rigel-engine";
|
|
version = "0-unstable-2024-05-26";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lethal-guitar";
|
|
repo = "RigelEngine";
|
|
rev = "f05996f9b3ad3b3ea5bb818e49e7977636746343";
|
|
hash = "sha256-iZ+eYZxnVqHo4vLeZdoV7TO3fWivCfbAf4F57/fU7aY=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
SDL2_mixer
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-Wno-dev"
|
|
] ++ lib.optional buildOpenGLES "-DUSE_GL_ES=ON";
|
|
|
|
meta = {
|
|
description = "Modern re-implementation of the classic DOS game Duke Nukem II";
|
|
homepage = "https://github.com/lethal-guitar/RigelEngine";
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [ keenanweaver ];
|
|
mainProgram = "RigelEngine";
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|