deutex: init at 5.2.3

(cherry picked from commit 35cfb48238)
This commit is contained in:
TheTaoOfSu
2025-05-22 14:23:16 +02:00
committed by misuzu
parent 5d00715c08
commit 13ccb03b0f

View File

@@ -0,0 +1,42 @@
{
stdenv,
lib,
autoreconfHook,
fetchFromGitHub,
pkg-config,
libpng,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "deutex";
version = "5.2.3";
src = fetchFromGitHub {
owner = "Doom-Utils";
repo = "deutex";
tag = "v${finalAttrs.version}";
hash = "sha256-wDAlwOtupkYv6y4fQPwL/PVOhh7wqORnjxV22kmON+U=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInput = [
libpng
];
meta = {
description = "Command-line tool to create and modify WAD files for games built on the original Doom engine";
homepage = "https://github.com/Doom-Utils/deutex";
license = with lib.licenses; [
gpl2Plus
hpnd
lgpl21Plus
];
maintainers = with lib.maintainers; [ thetaoofsu ];
mainProgram = "deutex";
platforms = lib.platforms.unix;
};
})