deutex: init at 5.2.3 (#409483)

authored by Aleksana and committed by GitHub b947e13f 9af0272e

+42
+42
pkgs/by-name/de/deutex/package.nix
··· 1 + { 2 + stdenv, 3 + lib, 4 + autoreconfHook, 5 + fetchFromGitHub, 6 + pkg-config, 7 + libpng, 8 + }: 9 + 10 + stdenv.mkDerivation (finalAttrs: { 11 + pname = "deutex"; 12 + version = "5.2.3"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "Doom-Utils"; 16 + repo = "deutex"; 17 + tag = "v${finalAttrs.version}"; 18 + hash = "sha256-wDAlwOtupkYv6y4fQPwL/PVOhh7wqORnjxV22kmON+U="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + autoreconfHook 23 + pkg-config 24 + ]; 25 + 26 + buildInput = [ 27 + libpng 28 + ]; 29 + 30 + meta = { 31 + description = "Command-line tool to create and modify WAD files for games built on the original Doom engine"; 32 + homepage = "https://github.com/Doom-Utils/deutex"; 33 + license = with lib.licenses; [ 34 + gpl2Plus 35 + hpnd 36 + lgpl21Plus 37 + ]; 38 + maintainers = with lib.maintainers; [ thetaoofsu ]; 39 + mainProgram = "deutex"; 40 + platforms = lib.platforms.unix; 41 + }; 42 + })