nugget-doom: init at 4.3.0 (#413068)

This commit is contained in:
Aleksana
2025-06-13 23:32:34 +08:00
committed by GitHub
2 changed files with 64 additions and 0 deletions
+7
View File
@@ -2787,6 +2787,13 @@
githubId = 68944906;
name = "Nikita";
};
bandithedoge = {
email = "bandithedoge@protonmail.com";
matrix = "@bandithedoge:matrix.org";
github = "bandithedoge";
githubId = 26331682;
name = "Mikołaj Lercher";
};
bandresen = {
email = "bandresen@gmail.com";
github = "bennyandresen";
+57
View File
@@ -0,0 +1,57 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
python3,
SDL2,
SDL2_net,
alsa-lib,
fluidsynth,
libebur128,
libsndfile,
libxmp,
openal,
yyjson,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "nugget-doom";
version = "4.3.0";
src = fetchFromGitHub {
owner = "MrAlaux";
repo = "Nugget-Doom";
tag = "nugget-doom-${finalAttrs.version}";
hash = "sha256-T85UwCl75/RPOscfcRVlF3HhjlDVM2+W1L002UGNLZU=";
};
nativeBuildInputs = [
cmake
python3
];
buildInputs = [
SDL2
SDL2_net
alsa-lib
fluidsynth
libebur128
libsndfile
libxmp
openal
yyjson
];
passthru.updateScript = nix-update-script { };
meta = {
description = "Doom source port forked from Woof! with additional features";
homepage = "https://github.com/MrAlaux/Nugget-Doom";
changelog = "https://github.com/fabiangreffrath/woof/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ bandithedoge ];
mainProgram = "nugget-doom";
platforms = with lib.platforms; linux ++ darwin ++ windows;
};
})