Skip to content
Dzmitry Malyshau edited this page Oct 12, 2025 · 2 revisions

Setup

Shell requirements:

  nativeBuildInputs = [
    cmake
    SDL2.dev
    SDL2_net.dev
    libogg.dev
    libvorbis.dev
    ffmpeg.dev
  ];
git clone https://github.com/KranX/Vangers
cd Vangers

Clunk

git clone https://github.com/stalkerg/clunk
cd clunk
mkdir install
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=../install/ ..
make install
cd ..
export CLUNK_ROOT=`pwd`/install

Build

Continue with the game:

cd Vangers/build
cmake ..

Note: the "cmake/FindClunk.cmake" needs to use the $ENV{CLUNK_ROOT} to find it.

Clone this wiki locally