chore(app): keep only avcpp variant

This commit is contained in:
2025-11-23 21:07:27 +01:00
parent 2c045d4c73
commit 6e07b36f02
4 changed files with 70 additions and 236 deletions

View File

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