opencl-headers 2022.09.30 -> 2023.02.06 https://github.com/KhronosGroup/OpenCL-Headers/releases attrpath: opencl-headers Checking auto update branch... No auto update branch exists Old version 2022.09.30" not present in staging derivation file with contents: { lib, stdenv, fetchFromGitHub }: stdenv.mkDerivation rec { pname = "opencl-headers"; version = "2023.02.06"; src = fetchFromGitHub { owner = "KhronosGroup"; repo = "OpenCL-Headers"; rev = "v${version}"; sha256 = "sha256-BJDaDokyHgmyl+bGqCwG1J7iOvu0E3P3iYZ1/krot8s="; }; installPhase = '' mkdir -p $out/include/CL cp CL/* $out/include/CL ''; meta = with lib; { description = "Khronos OpenCL headers version ${version}"; homepage = "https://www.khronos.org/registry/cl/"; license = licenses.asl20; platforms = platforms.unix; }; }