about summary refs log tree commit diff
path: root/pkgs/games/zdoom/zdbsp.nix
blob: e688b908e126885c01e92cde576bcc60aaf28a99 (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
28
29
30
31
32
{ 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 = "1j6k0appgjjj3ffbll9hy9nnbqr17szd1s66q08zrbkfqf6g8f0d";
    stripRoot = false;
  };

  nativeBuildInputs = [
    cmake
  ];

  buildInputs = [
    zlib
  ];

  installPhase = ''
    install -Dm755 zdbsp $out/bin/zdbsp
  '';

  meta = with lib; {
    description = "ZDoom's internal node builder for DOOM maps";
    homepage = "https://zdoom.org/wiki/ZDBSP";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ lassulus siraben ];
    platforms = platforms.unix;
  };
}