mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
28 lines
645 B
Nix
28 lines
645 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, SDL2}:
|
|
|
|
#TODO: tests
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "faudio";
|
|
version = "21.01";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FNA-XNA";
|
|
repo = "FAudio";
|
|
rev = version;
|
|
sha256 = "sha256-D7nlwQnz2JPRB3JrrkyUcaaf4Ro/+Ap8sqq5Oz8naHw=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|