From 29ed9cacf91181ae431698fadbb8e2f941edd9f9 Mon Sep 17 00:00:00 2001 From: Tomasz Kalisiak Date: Mon, 17 Nov 2025 06:22:31 +0100 Subject: [PATCH] stb: add missing stb_vorbis.c Copy C source files to the include directory. --- pkgs/by-name/st/stb/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/st/stb/package.nix b/pkgs/by-name/st/stb/package.nix index 881eff8b8bc1..70eb6e5cc450 100644 --- a/pkgs/by-name/st/stb/package.nix +++ b/pkgs/by-name/st/stb/package.nix @@ -38,6 +38,7 @@ stdenv.mkDerivation rec { runHook preInstall mkdir -p $out/include/stb cp *.h $out/include/stb/ + cp *.c $out/include/stb/ runHook postInstall '';