nixpkgs/pkgs/games/quakespasm/vulkan.nix

60 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, makeWrapper, SDL2, gzip, libvorbis, libmad, vulkan-headers, vulkan-loader }:
2018-09-08 20:13:23 +00:00
2018-01-20 09:39:56 +00:00
stdenv.mkDerivation rec {
pname = "vkquake";
2021-02-09 18:28:05 +00:00
version = "1.05.2";
2018-01-20 09:39:56 +00:00
src = fetchFromGitHub {
owner = "Novum";
repo = "vkQuake";
rev = version;
2021-02-09 18:28:05 +00:00
sha256 = "sha256-h4TpeOwCK3Ynd+XZKo7wHncWS1OI6+b9SReD5xMK9zk=";
2018-01-20 09:39:56 +00:00
};
sourceRoot = "source/Quake";
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
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 = ''
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;
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.
'';
2020-10-20 12:49:01 +00:00
platforms = platforms.linux;
maintainers = with maintainers; [ ];
2018-01-20 09:39:56 +00:00
};
}