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

43 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, python3, vulkan-headers, pkgconfig
, xlibsWrapper, libxcb, libXrandr, libXext, wayland, libGL_driver }:
let
version = "1.1.85";
in
2018-06-27 04:35:34 +01:00
assert version == vulkan-headers.version;
stdenv.mkDerivation rec {
name = "vulkan-loader-${version}";
inherit version;
2016-04-02 20:35:14 +01:00
src = fetchFromGitHub {
owner = "KhronosGroup";
2018-06-27 04:35:34 +01:00
repo = "Vulkan-Loader";
rev = "b02f64293680c484e1d7ff6ecb88f89277c0dc8c";
sha256 = "1n4vjyxlmi2ygx34srwbvalc5gz95gcsrmdw0k10353xja755gmj";
2016-04-02 20:35:14 +01:00
};
2018-06-27 04:35:34 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake python3 xlibsWrapper libxcb libXrandr libXext wayland ];
enableParallelBuilding = true;
2016-04-02 20:35:14 +01:00
2016-08-31 21:57:37 +01:00
cmakeFlags = [
"-DFALLBACK_DATA_DIRS=${libGL_driver.driverLink}/share:/usr/local/share:/usr/share"
2018-06-27 04:35:34 +01:00
"-DVULKAN_HEADERS_INSTALL_DIR=${vulkan-headers}"
2016-08-31 21:57:37 +01:00
];
2018-06-27 04:35:34 +01:00
outputs = [ "out" "dev" ];
2018-06-27 04:35:34 +01:00
postInstall = ''
cp -r "${vulkan-headers}/include" "$dev"
2017-03-27 03:28:30 +01:00
'';
2016-04-02 20:35:14 +01:00
meta = with stdenv.lib; {
description = "LunarG Vulkan loader";
2018-06-27 21:12:57 +01:00
homepage = https://www.lunarg.com;
2016-04-02 20:35:14 +01:00
platforms = platforms.linux;
license = licenses.asl20;
2017-04-01 20:28:59 +01:00
maintainers = [ maintainers.ralith ];
2016-04-02 20:35:14 +01:00
};
}