summary refs log tree commit diff
path: root/pkgs/games/zdoom/zdbsp.nix
blob: 430d5269a68e8630769616344cb7014e8d6385ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl, cmake, unzip, zlib }:

stdenv.mkDerivation rec {
  pname = "zdbsp";
  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;
  };
}