nixpkgs/pkgs/games/quakespasm/vulkan.nix

54 lines
1.5 KiB
Nix
Raw Normal View History

2018-09-08 20:13:23 +00:00
{ stdenv, SDL2, fetchFromGitHub, makeWrapper, gzip, libvorbis, libmad, vulkan-headers, vulkan-loader }:
2018-01-20 09:39:56 +00:00
stdenv.mkDerivation rec {
pname = "vkquake";
2020-01-17 12:17:54 +00:00
version = "1.04.1";
2018-01-20 09:39:56 +00:00
src = fetchFromGitHub {
owner = "Novum";
repo = "vkQuake";
rev = version;
2020-01-17 12:17:54 +00:00
sha256 = "1ry861pk3z02hy7i0yi3xwmd1zma802qzcnlm09w6pslayd9rwbf";
2018-01-20 09:39:56 +00:00
};
sourceRoot = "source/Quake";
2018-09-08 20:13:23 +00:00
nativeBuildInputs = [
makeWrapper vulkan-headers
];
2018-01-20 09:39:56 +00:00
buildInputs = [
2018-09-08 20:13:23 +00:00
gzip SDL2 libvorbis libmad vulkan-loader
2018-01-20 09:39:56 +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 = ''
wrapProgram $out/bin/vkquake --prefix LD_LIBRARY_PATH : ${vulkan-loader}/lib
'';
enableParallelBuilding = true;
2018-01-20 09:39:56 +00:00
meta = {
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-01-20 09:39:56 +00:00
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.gnidorah ];
};
}