3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/faudio/default.nix

28 lines
647 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, SDL2}:
#TODO: tests
stdenv.mkDerivation rec {
2020-07-04 19:25:00 +01:00
pname = "faudio";
2020-10-18 05:46:10 +01:00
version = "20.10";
src = fetchFromGitHub {
owner = "FNA-XNA";
repo = "FAudio";
rev = version;
2020-10-18 05:46:10 +01:00
sha256 = "0f5b45zdsy3yv2jsdy5zsd6xcfk1z5w5vlyvnim3d4bn875sp370";
};
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 ];
};
}