gst_all_1.gst-plugins-good: allow rpicamsrc on 32-bit ARM

rpicamsrc is supported on 32-bit ARM as well, but this was not allowed by the
assertion.
This commit is contained in:
Ben Wolsieffer
2023-07-25 22:54:45 -04:00
parent 1ccdb33cf4
commit ffed6bb862
@@ -45,7 +45,7 @@
, enableDocumentation ? stdenv.hostPlatform == stdenv.buildPlatform, hotdoc
}:
assert raspiCameraSupport -> (stdenv.isLinux && stdenv.isAarch64);
assert raspiCameraSupport -> (stdenv.isLinux && (stdenv.isAarch32 || stdenv.isAarch64));
stdenv.mkDerivation rec {
pname = "gst-plugins-good";