1 { lib, stdenv, fetchFromGitHub, cmake, SDL2}:
5 stdenv.mkDerivation rec {
9 src = fetchFromGitHub {
13 sha256 = "sha256-iK0cjhq16DU/77p0cM3SMk+gE1PQV0zd96a3kxwXNLk=";
16 nativeBuildInputs = [cmake];
18 buildInputs = [ SDL2 ];
21 description = "XAudio reimplementation focusing to develop a fully accurate DirectX audio library";
22 homepage = "https://github.com/FNA-XNA/FAudio";
23 changelog = "https://github.com/FNA-XNA/FAudio/releases/tag/${version}";
24 license = licenses.zlib;
25 platforms = platforms.linux;
26 maintainers = [ maintainers.marius851000 ];