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:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user