directx-headers 1.608.2b -> 1.610.0 https://github.com/microsoft/DirectX-Headers/releases attrpath: directx-headers Checking auto update branch... No auto update branch exists Old version 1.608.2b" not present in staging derivation file with contents: { lib, stdenv, fetchFromGitHub, meson, ninja }: stdenv.mkDerivation rec { pname = "directx-headers"; version = "1.610.0"; src = fetchFromGitHub { owner = "microsoft"; repo = "DirectX-Headers"; rev = "v${version}"; hash = "sha256-lPYXAMFSyU3FopWdE6dDRWD6sVKcjxDVsTbgej/T2sk="; }; nativeBuildInputs = [ meson ninja ]; # tests require WSL2 mesonFlags = [ "-Dbuild-test=false" ]; meta = with lib; { description = "Official D3D12 headers from Microsoft"; homepage = "https://github.com/microsoft/DirectX-Headers"; license = licenses.mit; maintainers = with maintainers; [ k900 ]; platforms = platforms.all; }; }