lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

gst_all_1.gst-plugins-good: disable asserts

`lib/gstreamer-1.0/libgstrtpmanager.so` includes `${gstreamer.dev}/include/gstreamer-1.0/gst/base/gstbitwriter.h` in their .rodata section, increasing the runtime closure unnecessarily. This happens because `gstbitwriter.h` header uses GLib’s `g_assert` macro, which wants to print `__FILE__` on assertion failure.

The assertions can and should be disabled on stable releases (https://gitlab.freedesktop.org/gstreamer/gstreamer/-/commit/ce64f0e0e0d4e692c8d99f9744d38b9676b3d720) so let’s do that.

+1
+1
pkgs/development/libraries/gstreamer/good/default.nix
··· 120 120 mesonFlags = [ 121 121 "-Dexamples=disabled" # requires many dependencies and probably not useful for our users 122 122 "-Ddoc=disabled" # `hotdoc` not packaged in nixpkgs as of writing 123 + "-Dglib-asserts=disabled" # asserts should be disabled on stable releases 123 124 ] ++ lib.optionals (!qt5Support) [ 124 125 "-Dqt5=disabled" 125 126 ] ++ lib.optionals (!gtkSupport) [