nixpkgs/pkgs/games/zdoom/zdbsp.nix

33 lines
701 B
Nix
Raw Normal View History

{ lib, stdenv, fetchzip, cmake, zlib }:
2017-02-09 21:37:09 +00:00
stdenv.mkDerivation rec {
pname = "zdbsp";
2017-02-09 21:37:09 +00:00
version = "1.19";
2021-01-03 09:49:22 +00:00
src = fetchzip {
2017-02-09 21:37:09 +00:00
url = "https://zdoom.org/files/utils/zdbsp/zdbsp-${version}-src.zip";
2021-01-03 09:49:22 +00:00
sha256 = "1j6k0appgjjj3ffbll9hy9nnbqr17szd1s66q08zrbkfqf6g8f0d";
stripRoot = false;
2017-02-09 21:37:09 +00:00
};
2021-01-04 19:51:32 +00:00
nativeBuildInputs = [
cmake
];
buildInputs = [
zlib
];
2017-02-09 21:37:09 +00:00
installPhase = ''
install -Dm755 zdbsp $out/bin/zdbsp
'';
meta = with lib; {
2017-02-09 21:37:09 +00:00
description = "ZDoom's internal node builder for DOOM maps";
homepage = "https://zdoom.org/wiki/ZDBSP";
2017-02-09 21:37:09 +00:00
license = licenses.gpl2Plus;
2021-01-04 09:47:09 +00:00
maintainers = with maintainers; [ lassulus siraben ];
2021-01-03 09:49:22 +00:00
platforms = platforms.unix;
2017-02-09 21:37:09 +00:00
};
}