nixpkgs/pkgs/development/libraries/faudio/default.nix

28 lines
645 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, SDL2}:
#TODO: tests
stdenv.mkDerivation rec {
2020-07-04 21:25:00 +03:00
pname = "faudio";
2021-10-29 16:05:05 +03:00
version = "21.10";
src = fetchFromGitHub {
owner = "FNA-XNA";
repo = "FAudio";
rev = version;
2021-10-29 16:05:05 +03:00
sha256 = "sha256-gh/QYH25j9A+XalW6ajRjs+yOYEfkZmw11CHjR6LK1E=";
};
2020-11-11 08:01:22 +03:00
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";
license = licenses.zlib;
platforms = platforms.linux;
maintainers = [ maintainers.marius851000 ];
};
}