mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
44 lines
1.4 KiB
Nix
44 lines
1.4 KiB
Nix
{ stdenv, lib, fetchFromGitHub, cmake, python3, vulkan-loader,
|
|
vulkan-headers, glslang, pkgconfig, xlibsWrapper, libxcb,
|
|
libXrandr, wayland }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vulkan-tools";
|
|
version = "1.2.162.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KhronosGroup";
|
|
repo = "Vulkan-Tools";
|
|
rev = "sdk-${version}";
|
|
sha256 = "088vqh956zma3p1qc3p6rsygf5s395b6cv8b1x0whp2a0a1y81xz";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
buildInputs = [ python3 vulkan-headers vulkan-loader xlibsWrapper libxcb libXrandr wayland ];
|
|
|
|
libraryPath = lib.strings.makeLibraryPath [ vulkan-loader ];
|
|
|
|
dontPatchELF = true;
|
|
|
|
cmakeFlags = [
|
|
# Don't build the mock ICD as it may get used instead of other drivers, if installed
|
|
"-DBUILD_ICD=OFF"
|
|
"-DGLSLANG_INSTALL_DIR=${glslang}"
|
|
# vulkaninfo loads libvulkan using dlopen, so we have to add it manually to RPATH
|
|
"-DCMAKE_INSTALL_RPATH=${libraryPath}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Khronos official Vulkan Tools and Utilities";
|
|
longDescription = ''
|
|
This project provides Vulkan tools and utilities that can assist
|
|
development by enabling developers to verify their applications correct
|
|
use of the Vulkan API.
|
|
'';
|
|
homepage = "https://github.com/KhronosGroup/Vulkan-Tools";
|
|
platforms = platforms.linux;
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.ralith ];
|
|
};
|
|
}
|