Commit 064bcc58 authored by K900's avatar K900
Browse files

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

The tools build just fine with older/newer headers generally.
parent 19ca45e3
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -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);
  };
}