2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, SDL2}:
|
2019-10-07 12:22:33 +02:00
|
|
|
|
|
|
|
#TODO: tests
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-07-04 20:25:00 +02:00
|
|
|
pname = "faudio";
|
2021-01-18 17:36:47 +01:00
|
|
|
version = "21.01";
|
2019-10-07 12:22:33 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "FNA-XNA";
|
|
|
|
repo = "FAudio";
|
|
|
|
rev = version;
|
2021-01-18 17:36:47 +01:00
|
|
|
sha256 = "sha256-D7nlwQnz2JPRB3JrrkyUcaaf4Ro/+Ap8sqq5Oz8naHw=";
|
2019-10-07 12:22:33 +02:00
|
|
|
};
|
|
|
|
|
2020-11-11 06:01:22 +01:00
|
|
|
nativeBuildInputs = [cmake];
|
2019-10-07 12:22:33 +02:00
|
|
|
|
|
|
|
buildInputs = [ SDL2 ];
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2019-10-07 12:22:33 +02:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|