lol

Merge pull request #130966 from Artturin/straberry

strawberry: add glib-networking to fix #112334

authored by

Sandro and committed by
GitHub
99d4811d 67026276

+7 -2
+7 -2
pkgs/applications/audio/strawberry/default.nix
··· 28 28 , qtx11extras 29 29 , qttools 30 30 , withGstreamer ? true 31 + , glib-networking 31 32 , gst_all_1 ? null 32 33 , withVlc ? true 33 34 , libvlc ? null ··· 69 70 p11-kit 70 71 ] 71 72 ++ lib.optionals withGstreamer (with gst_all_1; [ 73 + glib-networking 72 74 gstreamer 73 75 gst-plugins-base 74 76 gst-plugins-good ··· 85 87 util-linux 86 88 ]; 87 89 88 - postInstall = '' 89 - qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0") 90 + postInstall = lib.optionalString withGstreamer '' 91 + qtWrapperArgs+=( 92 + --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" 93 + --prefix GIO_EXTRA_MODULES : "${glib-networking.out}/lib/gio/modules" 94 + ) 90 95 ''; 91 96 92 97 meta = with lib; {