File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change 33 stdenv ,
44 fetchFromGitHub ,
55 cmake ,
6- SDL2 ,
6+ sdl3 ,
77} :
88
99#TODO: tests
1010
11- stdenv . mkDerivation rec {
11+ stdenv . mkDerivation ( finalAttrs : {
1212 pname = "faudio" ;
13- version = "25.02 " ;
13+ version = "25.04 " ;
1414
1515 src = fetchFromGitHub {
1616 owner = "FNA-XNA" ;
1717 repo = "FAudio" ;
18- rev = version ;
19- sha256 = "sha256-nPU225LLQYN0D1LUsp9XGm2bCcB5WLpD3TcGDiWCe0c =" ;
18+ tag = finalAttrs . version ;
19+ hash = "sha256-nYpolFizEWCSI/YENViMKDu7ExpFpPivH5RnS7PMfkA =" ;
2020 } ;
2121
2222 nativeBuildInputs = [ cmake ] ;
2323
24- buildInputs = [ SDL2 ] ;
24+ buildInputs = [ sdl3 ] ;
2525
26- meta = with lib ; {
26+ meta = {
2727 description = "XAudio reimplementation focusing to develop a fully accurate DirectX audio library" ;
2828 homepage = "https://github.com/FNA-XNA/FAudio" ;
29- changelog = "https://github.com/FNA-XNA/FAudio/releases/tag/${ version } " ;
30- license = licenses . zlib ;
31- platforms = platforms . unix ;
32- maintainers = [ maintainers . marius851000 ] ;
29+ changelog = "https://github.com/FNA-XNA/FAudio/releases/tag/${ finalAttrs . version } " ;
30+ license = lib . licenses . zlib ;
31+ platforms = lib . platforms . unix ;
32+ maintainers = [ lib . maintainers . marius851000 ] ;
3333 } ;
34- }
34+ } )
You can’t perform that action at this time.
0 commit comments