Skip to content

Commit

Permalink
gst_all_1.gst-plugins-good: don't allow building rpicamsrc on aarch64
Browse files Browse the repository at this point in the history
MMAL is not supported on 64-bit (see [1]), so rpicamsrc cannot be built on
aarch64.

[1] raspberrypi/userland#688
  • Loading branch information
lopsided98 committed Feb 19, 2023
1 parent 8131dac commit b6ba4b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/libraries/gstreamer/good/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
, glib
}:

assert raspiCameraSupport -> (stdenv.isLinux && (stdenv.isAarch32 || stdenv.isAarch64));
assert raspiCameraSupport -> (stdenv.isLinux && stdenv.isAarch32);

stdenv.mkDerivation rec {
pname = "gst-plugins-good";
Expand Down

0 comments on commit b6ba4b0

Please sign in to comment.