vulkan-headers: init at 1.1.77.0
This commit is contained in:
parent
2ebd32ab0c
commit
879145e1f7
22
pkgs/development/libraries/vulkan-headers/default.nix
Normal file
22
pkgs/development/libraries/vulkan-headers/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchFromGitHub, cmake }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "vulkan-headers-${version}";
|
||||
version = "1.1.77.0";
|
||||
|
||||
buildInputs = [ cmake ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "KhronosGroup";
|
||||
repo = "Vulkan-Headers";
|
||||
rev = "sdk-${version}";
|
||||
sha256 = "1k01y5cj154mw7853w5xh135b2jp6k83kzwknw0dbs5adj4dx0kf";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Vulkan Header files and API registry";
|
||||
homepage = "http://www.lunarg.com";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.ralith ];
|
||||
};
|
||||
}
|
@ -12040,6 +12040,7 @@ with pkgs;
|
||||
CoreText IOSurface ImageIO OpenGL GLUT;
|
||||
};
|
||||
|
||||
vulkan-headers = callPackage ../development/libraries/vulkan-headers { };
|
||||
vulkan-loader = callPackage ../development/libraries/vulkan-loader { };
|
||||
|
||||
vtkWithQt4 = vtk.override { qtLib = qt4; };
|
||||
|
Loading…
Reference in New Issue
Block a user