mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
91 lines
2.0 KiB
Nix
91 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
glslang,
|
|
pkg-config,
|
|
flac,
|
|
libopus,
|
|
opusfile,
|
|
makeWrapper,
|
|
SDL2,
|
|
gzip,
|
|
libvorbis,
|
|
libmad,
|
|
vulkan-headers,
|
|
vulkan-loader,
|
|
moltenvk,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vkquake";
|
|
version = "1.31.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Novum";
|
|
repo = "vkQuake";
|
|
rev = version;
|
|
sha256 = "sha256-GSCH8U5N95I/gj5KIzAnpsU4i2xJuzXcccuKKAskk8Q=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
glslang
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
flac
|
|
gzip
|
|
libmad
|
|
libopus
|
|
libvorbis
|
|
opusfile
|
|
vulkan-loader
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
moltenvk
|
|
vulkan-headers
|
|
];
|
|
|
|
buildFlags = [ "DO_USERDIRS=1" ];
|
|
|
|
env = lib.optionalAttrs stdenv.hostPlatform.isDarwin {
|
|
NIX_CFLAGS_COMPILE = lib.concatStringsSep " " [
|
|
"-Wno-error=unused-but-set-variable"
|
|
"-Wno-error=implicit-const-int-float-conversion"
|
|
];
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/bin"
|
|
cp vkquake "$out/bin"
|
|
'';
|
|
|
|
postFixup = lib.optionalString (!stdenv.hostPlatform.isDarwin) ''
|
|
patchelf $out/bin/vkquake \
|
|
--add-rpath ${lib.makeLibraryPath [ vulkan-loader ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
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.
|
|
'';
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
maintainers = with maintainers; [ PopeRigby ylh ];
|
|
mainProgram = "vkquake";
|
|
};
|
|
}
|