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
45 lines
882 B
Nix
45 lines
882 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
cmake,
|
|
vulkan-headers,
|
|
vulkan-loader,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "monado-vulkan-layers";
|
|
version = "0-unstable-2024-02-21";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
owner = "monado";
|
|
repo = "utilities/vulkan-layers";
|
|
rev = "ae43cdcbd25c56e3481bbc8a0ce2bfcebba9f7c2";
|
|
sha256 = "sha256-QabYVKcenW+LQ+QSjUoQOLOQAVHdjE0YXd+1WsdzNPc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
vulkan-headers
|
|
vulkan-loader
|
|
];
|
|
|
|
patches = [
|
|
./absolute-layer-path.patch
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Vulkan Layers for Monado";
|
|
homepage = "https://gitlab.freedesktop.org/monado/utilities/vulkan-layers";
|
|
platforms = platforms.linux;
|
|
license = licenses.boost;
|
|
maintainers = with maintainers; [
|
|
Scrumplex
|
|
passivelemon
|
|
];
|
|
};
|
|
}
|