Unverified Commit 2cd3cac1 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

frigate: pin onnxruntime protobuf version (#445844)

parents 42093d86 0992415c
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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;