summary refs log tree commit diff
path: root/pkgs/applications/networking/corebird
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2017-07-17 15:51:20 +0200
committerJan Tojnar <jtojnar@gmail.com>2017-07-17 16:50:54 +0200
commite564f16b7fc31462f9819099e99191baf703b38a (patch)
tree3575016961c1f1ee7a79c7552593faa3cccdb4fc /pkgs/applications/networking/corebird
parent0edae74119d5353dea7898f245e824c52ac48513 (diff)
downloadnixlib-e564f16b7fc31462f9819099e99191baf703b38a.tar
nixlib-e564f16b7fc31462f9819099e99191baf703b38a.tar.gz
nixlib-e564f16b7fc31462f9819099e99191baf703b38a.tar.bz2
nixlib-e564f16b7fc31462f9819099e99191baf703b38a.tar.lz
nixlib-e564f16b7fc31462f9819099e99191baf703b38a.tar.xz
nixlib-e564f16b7fc31462f9819099e99191baf703b38a.tar.zst
nixlib-e564f16b7fc31462f9819099e99191baf703b38a.zip
corebird: fix video playback
Corebird requires gst-plugins-bad compiled with GTK support to play
videos.

This commit enables the GTK support.
Diffstat (limited to 'pkgs/applications/networking/corebird')
-rw-r--r--pkgs/applications/networking/corebird/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/corebird/default.nix b/pkgs/applications/networking/corebird/default.nix
index 7b67ad235e3a..288c800dd163 100644
--- a/pkgs/applications/networking/corebird/default.nix
+++ b/pkgs/applications/networking/corebird/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = [
     gtk3 json_glib sqlite libsoup gettext vala_0_32 gnome3.rest gnome3.dconf gnome3.gspell glib_networking
-  ] ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-libav ]);
+  ] ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good (gst-plugins-bad.override { gtkSupport = true; }) gst-libav ]);
 
   meta = {
     description = "Native Gtk+ Twitter client for the Linux desktop";