lol

pitivi: unbreak build

[Breakage introduced in commit 5c4e00b6b797c444c0a0ca434c3b6f
("gst_all_1: 1.6.1 -> 1.8.0 (#14628)").]

The build is failing due to a Wayland test/example program
(<gst-plugins-bad>/tests/examples/waylandsink) being built with a gtk3
input without Wayland support (or detection is failing):

main.c:28:2: error: #error "Wayland is not supported in GTK+"

Fix it by explicitly disabling wayland; pass --enable-wayland=no to
configure.

+5 -1
+5 -1
pkgs/top-level/all-packages.nix
··· 2832 2832 pitivi = callPackage ../applications/video/pitivi { 2833 2833 gst = gst_all_1 // 2834 2834 { gst-plugins-bad = gst_all_1.gst-plugins-bad.overrideDerivation 2835 - (attrs: { nativeBuildInputs = attrs.nativeBuildInputs ++ [ gtk3 ]; }); 2835 + (attrs: { nativeBuildInputs = attrs.nativeBuildInputs ++ [ gtk3 ]; 2836 + # Fix this build error in ./tests/examples/waylandsink: 2837 + # main.c:28:2: error: #error "Wayland is not supported in GTK+" 2838 + configureFlags = attrs.configureFlags or "" + "--enable-wayland=no"; 2839 + }); 2836 2840 }; 2837 2841 }; 2838 2842