2018-06-26 20:31:11 -07:00
|
|
|
{ stdenv, fetchFromGitHub, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "vulkan-headers";
|
2019-04-16 09:15:39 -07:00
|
|
|
version = "1.1.106";
|
2018-06-26 20:31:11 -07:00
|
|
|
|
2019-08-31 09:04:31 -07:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2018-06-26 20:31:11 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "KhronosGroup";
|
|
|
|
repo = "Vulkan-Headers";
|
2019-02-16 23:57:14 -08:00
|
|
|
rev = "sdk-${version}";
|
2019-08-06 15:42:10 -07:00
|
|
|
sha256 = "0fdvh26nxibylh32lj8b62d9nf9j25xa0il9zg362wmr2zgm8gka";
|
2018-06-26 20:31:11 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Vulkan Header files and API registry";
|
2018-07-19 18:12:04 -07:00
|
|
|
homepage = https://www.lunarg.com;
|
2018-06-26 20:31:11 -07:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.ralith ];
|
|
|
|
};
|
|
|
|
}
|