feat(pipeline): add pipeline header

This commit is contained in:
2026-03-10 19:02:04 +01:00
parent 07a6f1b3d8
commit 8b23d09ac5
6 changed files with 184 additions and 1 deletions

View File

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