1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/tools/graphics/vulkan-tools/default.nix

29 lines
856 B
Nix
Raw Normal View History

2018-06-27 04:36:15 +01:00
{ stdenv, fetchFromGitHub, cmake, python3, vulkan-loader,
glslang, pkgconfig, xlibsWrapper, libxcb, libXrandr, wayland }:
2018-06-27 04:36:15 +01:00
stdenv.mkDerivation rec {
name = "vulkan-tools-${version}";
version = "1.1.85";
2018-06-27 04:36:15 +01:00
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "Vulkan-Tools";
rev = "sdk-${version}";
sha256 = "0f4dfr8g0vy7y1hvs6z9lw52kissailzisby4qnz4akv0zz5y5s5";
2018-06-27 04:36:15 +01:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake python3 vulkan-loader xlibsWrapper libxcb libXrandr wayland ];
2018-06-27 04:36:15 +01:00
enableParallelBuilding = true;
cmakeFlags = [ "-DBUILD_ICD=OFF" "-DGLSLANG_INSTALL_DIR=${glslang}" ];
meta = with stdenv.lib; {
description = "LunarG Vulkan loader";
2018-07-06 02:35:28 +01:00
homepage = https://www.lunarg.com;
2018-06-27 04:36:15 +01:00
platforms = platforms.linux;
license = licenses.asl20;
maintainers = [ maintainers.ralith ];
};
}