blob: 1c19f7ca8b9dee689caf82d529ae475944676a78 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
lib,
stdenv,
fetchFromGitHub,
cmake,
sdl3,
}:
#TODO: tests
stdenv.mkDerivation (finalAttrs: {
pname = "faudio";
version = "25.07";
src = fetchFromGitHub {
owner = "FNA-XNA";
repo = "FAudio";
tag = finalAttrs.version;
hash = "sha256-ZMU3ntvnUHbeWQ5k5ZSnSLBABGm/F/rSAUM4blorpts=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ sdl3 ];
meta = {
description = "XAudio reimplementation focusing to develop a fully accurate DirectX audio library";
homepage = "https://github.com/FNA-XNA/FAudio";
changelog = "https://github.com/FNA-XNA/FAudio/releases/tag/${finalAttrs.version}";
license = lib.licenses.zlib;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.marius851000 ];
};
})
|