feat(pipeline): add pipeline header
This commit is contained in:
@@ -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)
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user