spirv-headers 1.3.236.0 -> 1.6.1 https://repology.org/metapackage/spirv-headers/versions attrpath: spirv-headers Checking auto update branch... No auto update branch exists Old version 1.3.236.0" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, cmake }: stdenv.mkDerivation rec { pname = "spirv-headers"; version = "1.3.239.0"; src = fetchFromGitHub { owner = "KhronosGroup"; repo = "SPIRV-Headers"; rev = "sdk-${version}"; hash = "sha256-bjiWGSmpEbydXtCLP8fRZfPBvdCzBoJxKXTx3BroQbg="; }; nativeBuildInputs = [ cmake ]; # https://github.com/KhronosGroup/SPIRV-Headers/issues/282 postPatch = '' substituteInPlace SPIRV-Headers.pc.in \ --replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@ ''; meta = with lib; { description = "Machine-readable components of the Khronos SPIR-V Registry"; homepage = "https://github.com/KhronosGroup/SPIRV-Headers"; license = licenses.mit; maintainers = [ maintainers.ralith ]; }; }