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