Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
70 lines
1.5 KiB
Nix
70 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
writeText,
|
|
vulkan-headers,
|
|
vulkan-utility-libraries,
|
|
jq,
|
|
libX11,
|
|
libXrandr,
|
|
libxcb,
|
|
wayland,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vulkan-extension-layer";
|
|
version = "1.4.321.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KhronosGroup";
|
|
repo = "Vulkan-ExtensionLayer";
|
|
rev = "vulkan-sdk-${version}";
|
|
hash = "sha256-tWUi+yCI7wNLVeGg/h5a+yvKWAu8KZqtgEujfCUtYQ4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
jq
|
|
];
|
|
|
|
buildInputs = [
|
|
vulkan-headers
|
|
vulkan-utility-libraries
|
|
libX11
|
|
libXrandr
|
|
libxcb
|
|
wayland
|
|
];
|
|
|
|
# Help vulkan-loader find the validation layers
|
|
setupHook = writeText "setup-hook" ''
|
|
addToSearchPath XDG_DATA_DIRS @out@/share
|
|
'';
|
|
|
|
# Tests are not for gpu-less and headless environments
|
|
cmakeFlags = [
|
|
"-DBUILD_TESTS=false"
|
|
];
|
|
|
|
# Include absolute paths to layer libraries in their associated
|
|
# layer definition json files.
|
|
preFixup = ''
|
|
for f in "$out"/share/vulkan/explicit_layer.d/*.json "$out"/share/vulkan/implicit_layer.d/*.json; do
|
|
jq <"$f" >tmp.json ".layer.library_path = \"$out/lib/\" + .layer.library_path"
|
|
mv tmp.json "$f"
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Layers providing Vulkan features when native support is unavailable";
|
|
homepage = "https://github.com/KhronosGroup/Vulkan-ExtensionLayer/";
|
|
platforms = platforms.linux;
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|