feat(build): add avcpp deps

This commit is contained in:
2025-11-23 19:57:29 +01:00
parent 6f3d503f74
commit bb29832f71
6 changed files with 114 additions and 3 deletions

View File

@@ -5,13 +5,14 @@
spdlog,
stdenv,
pkg-config,
ffmpeg,
ffmpeg_7,
avcpp,
}:
stdenv.mkDerivation (finalAttrs: {
name = "mosh-me";
src = ../.;
nativeBuildInputs = [cmake ninja pkg-config];
buildInputs = [ffmpeg spdlog];
buildInputs = [ffmpeg_7 spdlog avcpp];
cmakeFlags = [
(lib.cmakeBool "BUILD_TESTING" finalAttrs.doCheck)
];