spirv-tools: 1.3.243.0 -> 2023.2, remove spirv-headers version check

Upstream versioning isn't consistent in the first place.
This commit is contained in:
K900 2023-05-01 14:38:33 +03:00
parent 955c459af5
commit 2c8f7f3911

View file

@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
pname = "spirv-tools";
version = "1.3.243.0";
version = "2023.2";
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "SPIRV-Tools";
rev = "sdk-${version}";
rev = "v${version}";
hash = "sha256-l44Ru0WjROQEDNU/2YQJGti1uDZP9osRdfsXus5EGX0=";
};
@ -41,6 +41,5 @@ stdenv.mkDerivation rec {
license = licenses.asl20;
platforms = platforms.unix;
maintainers = [ maintainers.ralith ];
broken = (version != spirv-headers.version);
};
}