vulkan-tools: 1.3.243 -> 1.3.249, remove vulkan-headers version check

The tools build just fine with older/newer headers generally.
This commit is contained in:
K900 2023-05-01 14:34:05 +03:00
parent 19ca45e39f
commit 064bcc58cd

View file

@ -21,13 +21,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "vulkan-tools"; pname = "vulkan-tools";
version = "1.3.243.0"; version = "1.3.249";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "KhronosGroup"; owner = "KhronosGroup";
repo = "Vulkan-Tools"; repo = "Vulkan-Tools";
rev = "sdk-${version}"; rev = "v${version}";
hash = "sha256-8XJON+iBEPRtuQWf1bPXyOJHRkuRLnLXgTIjk7gYQwE="; hash = "sha256-+d0Yp+e/wzlRmUIs4SffiphkqmM/7avJrt3JNOgO19I=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -103,6 +103,5 @@ stdenv.mkDerivation rec {
platforms = platforms.unix; platforms = platforms.unix;
license = licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.ralith ]; maintainers = [ maintainers.ralith ];
broken = (version != vulkan-headers.version);
}; };
} }