faudio: 25.02 -> 25.04
Diff: https://github.com/FNA-XNA/FAudio/compare/25.02...25.04 Changelog: https://github.com/FNA-XNA/FAudio/releases/tag/25.04
This commit is contained in:
@@ -3,32 +3,32 @@
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
cmake,
|
||||
SDL2,
|
||||
sdl3,
|
||||
}:
|
||||
|
||||
#TODO: tests
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "faudio";
|
||||
version = "25.02";
|
||||
version = "25.04";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "FNA-XNA";
|
||||
repo = "FAudio";
|
||||
rev = version;
|
||||
sha256 = "sha256-nPU225LLQYN0D1LUsp9XGm2bCcB5WLpD3TcGDiWCe0c=";
|
||||
tag = finalAttrs.version;
|
||||
hash = "sha256-nYpolFizEWCSI/YENViMKDu7ExpFpPivH5RnS7PMfkA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = [ SDL2 ];
|
||||
buildInputs = [ sdl3 ];
|
||||
|
||||
meta = with lib; {
|
||||
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/${version}";
|
||||
license = licenses.zlib;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.marius851000 ];
|
||||
changelog = "https://github.com/FNA-XNA/FAudio/releases/tag/${finalAttrs.version}";
|
||||
license = lib.licenses.zlib;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = [ lib.maintainers.marius851000 ];
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user