28 lines
646 B
Nix
28 lines
646 B
Nix
|
{ stdenv, fetchFromGitHub, cmake, SDL2}:
|
||
|
|
||
|
#TODO: tests
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "faudio";
|
||
|
version = "19.10";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "FNA-XNA";
|
||
|
repo = "FAudio";
|
||
|
rev = version;
|
||
|
sha256 = "1z7j803nxhgvjwpxr1m5d490yji727v7pn0ghhipbrfxlwzkw1sz";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [cmake];
|
||
|
|
||
|
buildInputs = [ SDL2 ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "XAudio reimplementation focusing to develop a fully accurate DirectX audio library";
|
||
|
homepage = "https://github.com/FNA-XNA/FAudio";
|
||
|
license = licenses.zlib;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = [ maintainers.marius851000 ];
|
||
|
};
|
||
|
}
|