zdbsp: init at 1.19
This commit is contained in:
parent
3fd44e2912
commit
0980003040
27
pkgs/games/zdoom/zdbsp.nix
Normal file
27
pkgs/games/zdoom/zdbsp.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchurl, cmake, unzip, zlib }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "zdbsp-${version}";
|
||||||
|
version = "1.19";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://zdoom.org/files/utils/zdbsp/zdbsp-${version}-src.zip";
|
||||||
|
sha256 = "0j82q7g7hgvnahk6gdyhmn9880mqii3b4agqc98f5xaj3kxmd2dr";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [cmake unzip];
|
||||||
|
buildInputs = [zlib];
|
||||||
|
sourceRoot = ".";
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
installPhase = ''
|
||||||
|
install -Dm755 zdbsp $out/bin/zdbsp
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "ZDoom's internal node builder for DOOM maps";
|
||||||
|
homepage = "https://zdoom.org/wiki/ZDBSP";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ertes];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -16512,6 +16512,8 @@ with pkgs;
|
|||||||
|
|
||||||
zangband = callPackage ../games/zangband { };
|
zangband = callPackage ../games/zangband { };
|
||||||
|
|
||||||
|
zdbsp = callPackage ../games/zdoom/zdbsp.nix { };
|
||||||
|
|
||||||
zdoom = callPackage ../games/zdoom { };
|
zdoom = callPackage ../games/zdoom { };
|
||||||
|
|
||||||
zod = callPackage ../games/zod { };
|
zod = callPackage ../games/zod { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user