2022-07-30 14:56:32 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, makeWrapper
|
|
|
|
, SDL2, gzip, libvorbis, libmad, vulkan-headers, vulkan-loader, moltenvk
|
|
|
|
}:
|
2018-09-08 20:13:23 +00:00
|
|
|
|
2018-01-20 09:39:56 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "vkquake";
|
2022-12-15 02:02:30 +00:00
|
|
|
version = "1.22.3";
|
2018-01-20 09:39:56 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Novum";
|
|
|
|
repo = "vkQuake";
|
|
|
|
rev = version;
|
2022-12-15 02:02:30 +00:00
|
|
|
sha256 = "sha256-+8DU1QT3Lgqf1AIReVnXQ2Lq6R6eBb8VjdkJfAn/Rtc=";
|
2018-01-20 09:39:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
sourceRoot = "source/Quake";
|
2018-04-14 20:51:41 +00:00
|
|
|
|
2018-09-08 20:13:23 +00:00
|
|
|
nativeBuildInputs = [
|
2020-10-20 12:49:01 +00:00
|
|
|
makeWrapper
|
|
|
|
vulkan-headers
|
2018-09-08 20:13:23 +00:00
|
|
|
];
|
|
|
|
|
2018-01-20 09:39:56 +00:00
|
|
|
buildInputs = [
|
2020-10-20 12:49:01 +00:00
|
|
|
gzip
|
|
|
|
SDL2
|
|
|
|
libvorbis
|
|
|
|
libmad
|
|
|
|
vulkan-loader
|
2022-07-30 14:56:32 +00:00
|
|
|
] ++ lib.optional stdenv.isDarwin moltenvk;
|
2018-01-20 09:39:56 +00:00
|
|
|
|
2018-04-14 20:51:41 +00:00
|
|
|
buildFlags = [ "DO_USERDIRS=1" ];
|
|
|
|
|
2018-01-20 09:39:56 +00:00
|
|
|
preInstall = ''
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
'';
|
|
|
|
|
|
|
|
makeFlags = [ "prefix=$(out) bindir=$(out)/bin" ];
|
|
|
|
|
|
|
|
postFixup = ''
|
2020-10-20 12:49:01 +00:00
|
|
|
wrapProgram $out/bin/vkquake \
|
|
|
|
--prefix LD_LIBRARY_PATH : ${vulkan-loader}/lib
|
2018-01-20 09:39:56 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2018-04-14 20:51:41 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-01-20 09:39:56 +00: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 20:51:41 +00:00
|
|
|
|
2022-07-30 14:56:32 +00:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
maintainers = with maintainers; [ ylh ];
|
2018-01-20 09:39:56 +00:00
|
|
|
};
|
|
|
|
}
|