All checks were successful
		
		
	
	Check flake / build-amd64-linux (push) Successful in 1m22s
				
			
		
			
				
	
	
		
			45 lines
		
	
	
		
			884 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			884 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   stdenv,
 | |
|   fetchFromGitHub,
 | |
|   lib,
 | |
|   meson,
 | |
|   ninja,
 | |
|   pkg-config,
 | |
|   vulkan-headers,
 | |
|   vulkan-loader,
 | |
|   wayland-scanner,
 | |
|   wayland,
 | |
|   xorg,
 | |
| }:
 | |
| stdenv.mkDerivation (finalAttrs: {
 | |
|   pname = "vk-hdr-layer";
 | |
|   version = "303e0c69e1d33acd95158d92b1fc652fb5b85399";
 | |
| 
 | |
|   src = fetchFromGitHub {
 | |
|     owner = "Zamundaaa";
 | |
|     repo = "VK_hdr_layer";
 | |
|     rev = "303e0c69e1d33acd95158d92b1fc652fb5b85399";
 | |
|     fetchSubmodules = true;
 | |
|     hash = "sha256-NsC44Ifl/fAHvFqP7NLrVZ71Y+x5mBEkv+r43HN5yn4=";
 | |
|   };
 | |
| 
 | |
|   nativeBuildInputs = [
 | |
|     meson
 | |
|     ninja
 | |
|     pkg-config
 | |
|   ];
 | |
|   buildInputs = [
 | |
|     vulkan-headers
 | |
|     vulkan-loader
 | |
|     wayland
 | |
|     wayland-scanner
 | |
|     xorg.libX11
 | |
|   ];
 | |
| 
 | |
|   meta = {
 | |
|     description = "Vulkan layer utilizing a small color management / HDR protocol for experimentation";
 | |
|     homepage = "https://github.com/Zamundaaa/VK_hdr_layer";
 | |
|     license = lib.licenses.mit;
 | |
|   };
 | |
| })
 |