faudio 23.09 -> 23.10 https://github.com/FNA-XNA/FAudio/releases attrpath: faudio Checking auto update branch... No auto update branch exists Old version 23.09" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, cmake, SDL2}: #TODO: tests stdenv.mkDerivation rec { pname = "faudio"; version = "23.10"; src = fetchFromGitHub { owner = "FNA-XNA"; repo = "FAudio"; rev = version; sha256 = "sha256-h4wPUUYG8IZr2jHUlKFO2K3QKGiX9AzyLc2Ma5hR8Tk="; }; nativeBuildInputs = [cmake]; buildInputs = [ SDL2 ]; meta = with lib; { description = "XAudio reimplementation focusing to develop a fully accurate DirectX audio library"; homepage = "https://github.com/FNA-XNA/FAudio"; changelog = "https://github.com/FNA-XNA/FAudio/releases/tag/${version}"; license = licenses.zlib; platforms = platforms.linux; maintainers = [ maintainers.marius851000 ]; }; }