frigate: pin onnxruntime protobuf version

This is required for alignment with the tensorflow protobuf version, else
this crashes the interpreter.
This commit is contained in:
Andrew Marshall
2025-09-24 19:28:17 +02:00
committed by Martin Weinelt
parent 079358a0d7
commit 0992415cdb

View File

@@ -10,6 +10,7 @@
frigate,
nixosTests,
fetchpatch,
protobuf_21,
}:
let
@@ -38,6 +39,11 @@ let
hash = "sha256-95xtUzzIxxvDtpHX/5uCHnTQTB8Fc08DZGUOR/SdKLs=";
};
});
onnxruntime = super.onnxruntime.override (old: {
onnxruntime = old.onnxruntime.override (old: {
protobuf = protobuf_21;
});
});
};
};
python3Packages = python.pkgs;