nixpkgs/pkgs/development/libraries/vulkan-loader/default.nix

34 lines
951 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, python3, vulkan-headers, pkgconfig
, xlibsWrapper, libxcb, libXrandr, libXext, wayland, addOpenGLRunpath }:
2020-01-29 06:27:09 +00:00
stdenv.mkDerivation rec {
pname = "vulkan-loader";
2020-01-29 06:27:09 +00:00
version = "1.2.131.2";
2016-04-02 19:35:14 +00:00
src = fetchFromGitHub {
owner = "KhronosGroup";
2018-06-27 03:35:34 +00:00
repo = "Vulkan-Loader";
2019-02-17 07:57:14 +00:00
rev = "sdk-${version}";
2020-01-29 06:27:09 +00:00
sha256 = "12n4mxc6db89258k8i47ql1zna7k94lkwv7lpxg39nm8ypa1ywrv";
2016-04-02 19:35:14 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake python3 xlibsWrapper libxcb libXrandr libXext wayland ];
enableParallelBuilding = true;
2016-04-02 19:35:14 +00:00
2016-08-31 20:57:37 +00:00
cmakeFlags = [
2019-08-06 22:42:10 +00:00
"-DSYSCONFDIR=${addOpenGLRunpath.driverLink}/share"
2018-06-27 03:35:34 +00:00
"-DVULKAN_HEADERS_INSTALL_DIR=${vulkan-headers}"
2016-08-31 20:57:37 +00:00
];
2018-06-27 03:35:34 +00:00
outputs = [ "out" "dev" ];
2016-04-02 19:35:14 +00:00
meta = with stdenv.lib; {
description = "LunarG Vulkan loader";
2018-06-27 20:12:57 +00:00
homepage = https://www.lunarg.com;
2016-04-02 19:35:14 +00:00
platforms = platforms.linux;
license = licenses.asl20;
2017-04-01 19:28:59 +00:00
maintainers = [ maintainers.ralith ];
2016-04-02 19:35:14 +00:00
};
}