mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
38 lines
704 B
Nix
38 lines
704 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchzip
|
|
, cmake
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "zdbsp";
|
|
version = "1.19";
|
|
|
|
src = fetchzip {
|
|
url = "https://zdoom.org/files/utils/zdbsp/zdbsp-${version}-src.zip";
|
|
sha256 = "sha256-DTj0jMNurvwRwMbo0L4+IeNlbfIwUbqcG1LKd68C08g=";
|
|
stripRoot = false;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
zlib
|
|
];
|
|
|
|
installPhase = ''
|
|
install -Dm755 zdbsp $out/bin/zdbsp
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://zdoom.org/wiki/ZDBSP";
|
|
description = "ZDoom's internal node builder for DOOM maps";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ lassulus siraben ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|