vulkan-hdr-layer-kwin6: init at 0-unstable-2024-10-19 (#345805)

This commit is contained in:
Kevin Cox 2024-12-06 22:11:11 -05:00 committed by GitHub
commit b139d3d874
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 60 additions and 0 deletions

View File

@ -4800,6 +4800,12 @@
github = "d4ilyrun";
githubId = 34611103;
};
d4rk = {
name = "Anoop Menon";
email = "d4rk@blackvoltage.org";
github = "d4rk";
githubId = 22163;
};
d4rkstar = {
name = "Bruno Salzano";
email = "d4rkstar@gmail.com";

View File

@ -0,0 +1,54 @@
{
lib,
stdenv,
cmake,
fetchFromGitHub,
libX11,
meson,
ninja,
pkg-config,
vulkan-headers,
vulkan-loader,
wayland-scanner,
wayland,
}:
stdenv.mkDerivation rec {
pname = "vulkan-hdr-layer-kwin6";
version = "0-unstable-2024-10-19";
depsBuildBuild = [ pkg-config ];
nativeBuildInputs = [
meson
ninja
pkg-config
cmake
wayland-scanner
];
buildInputs = [
vulkan-headers
vulkan-loader
libX11
wayland
];
strictDeps = true;
src = fetchFromGitHub {
owner = "Zamundaaa";
repo = "VK_hdr_layer";
rev = "e173f2617262664901039e3c821929afce05d2c1";
hash = "sha256-hBxRwbn29zFeHcRpfMF6I4piSASpN2AvZY0ci5Utj4U=";
fetchSubmodules = true;
};
meta = {
description = "Vulkan Wayland HDR WSI Layer (Xaver Hugl's fork for KWin 6)";
homepage = "https://github.com/Zamundaaa/VK_hdr_layer";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ d4rk ];
};
}