8 stdenv.mkDerivation (finalAttrs: {
10 version = "0-unstable-2024-06-06";
12 src = fetchFromGitHub {
13 owner = "vampirefrog";
15 rev = "cd89a6a386b3b17c74b1caca11e297b2748cf90d";
16 hash = "sha256-yak+pKxkrKOX/qgtwpldjd85deE/JB040bVjDD1mo7A=";
21 enableParallelBuilding = true;
28 "CC=${stdenv.cc.targetPrefix}cc"
34 for prog in $(grep 'PROGS=' Makefile | cut -d'=' -f2); do
35 install -Dm755 $prog $out/bin/$prog
42 updateScript = unstableGitUpdater { };
46 description = "C library for loading, saving and converting FM sound chip voice files in various formats";
47 homepage = "https://github.com/vampirefrog/libfmvoice";
48 license = licenses.gpl3Only;
49 maintainers = with maintainers; [ OPNA2608 ];
50 platforms = platforms.all;