2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, makeWrapper, SDL2, gzip, libvorbis, libmad, vulkan-headers, vulkan-loader }:
|
2018-09-08 22:13:23 +02:00
|
|
|
|
2018-01-20 10:39:56 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "vkquake";
|
2020-11-09 11:19:38 +01:00
|
|
|
version = "1.05.1";
|
2018-01-20 10:39:56 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Novum";
|
|
|
|
repo = "vkQuake";
|
|
|
|
rev = version;
|
2020-11-09 11:19:38 +01:00
|
|
|
sha256 = "03b2vxpakp6zizb0m65q9lq800z67b052k01q251b3f04kr1waih";
|
2018-01-20 10:39:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
sourceRoot = "source/Quake";
|
2018-04-14 22:51:41 +02:00
|
|
|
|
2018-09-08 22:13:23 +02:00
|
|
|
nativeBuildInputs = [
|
2020-10-20 14:49:01 +02:00
|
|
|
makeWrapper
|
|
|
|
vulkan-headers
|
2018-09-08 22:13:23 +02:00
|
|
|
];
|
|
|
|
|
2018-01-20 10:39:56 +01:00
|
|
|
buildInputs = [
|
2020-10-20 14:49:01 +02:00
|
|
|
gzip
|
|
|
|
SDL2
|
|
|
|
libvorbis
|
|
|
|
libmad
|
|
|
|
vulkan-loader
|
2018-01-20 10:39:56 +01:00
|
|
|
];
|
|
|
|
|
2018-04-14 22:51:41 +02:00
|
|
|
buildFlags = [ "DO_USERDIRS=1" ];
|
|
|
|
|
2018-01-20 10:39:56 +01:00
|
|
|
preInstall = ''
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
'';
|
|
|
|
|
|
|
|
makeFlags = [ "prefix=$(out) bindir=$(out)/bin" ];
|
|
|
|
|
|
|
|
postFixup = ''
|
2020-10-20 14:49:01 +02:00
|
|
|
wrapProgram $out/bin/vkquake \
|
|
|
|
--prefix LD_LIBRARY_PATH : ${vulkan-loader}/lib
|
2018-01-20 10:39:56 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2018-04-14 22:51:41 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-01-20 10:39:56 +01:00
|
|
|
description = "Vulkan Quake port based on QuakeSpasm";
|
|
|
|
homepage = src.meta.homepage;
|
|
|
|
longDescription = ''
|
|
|
|
vkQuake is a Quake 1 port using Vulkan instead of OpenGL for rendering.
|
|
|
|
It is based on the popular QuakeSpasm port and runs all mods compatible with it
|
|
|
|
like Arcane Dimensions or In The Shadows. vkQuake also serves as a Vulkan demo
|
|
|
|
application that shows basic usage of the API. For example it demonstrates render
|
|
|
|
passes & sub passes, pipeline barriers & synchronization, compute shaders, push &
|
|
|
|
specialization constants, CPU/GPU parallelism and memory pooling.
|
|
|
|
'';
|
2018-04-14 22:51:41 +02:00
|
|
|
|
2020-10-20 14:49:01 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ gnidorah ];
|
2018-01-20 10:39:56 +01:00
|
|
|
};
|
|
|
|
}
|