about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPascal Wittmann <PascalWittmann@gmx.net>2016-08-15 10:56:57 +0200
committerGitHub <noreply@github.com>2016-08-15 10:56:57 +0200
commitb22fc4c411407443ea811c4b7ba93b03698adfe9 (patch)
treec93e40acf58ba9481fcde1c0127ef67118b93da4 /pkgs/applications
parent9b4a7984a4803ed5ab9c9515682778444370eb01 (diff)
parent6d27410111d280777c22939f18d980f9b6b30416 (diff)
Merge pull request #17708 from DamienCassou/fix-byzanz
byzanz: Let it find gstreamer plugins
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/video/byzanz/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/video/byzanz/default.nix b/pkgs/applications/video/byzanz/default.nix
index 2d94cea0db9f8..872ac098f000a 100644
--- a/pkgs/applications/video/byzanz/default.nix
+++ b/pkgs/applications/video/byzanz/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, which, gnome3, glib, intltool, pkgconfig, libtool, cairo, gtk3, gst_all_1 }:
+{ stdenv, fetchgit, wrapGAppsHook, which, gnome3, glib, intltool, pkgconfig, libtool, cairo, gtk3, gst_all_1, xorg }:
 
 stdenv.mkDerivation rec {
   version = "0.2.3.alpha";
@@ -18,7 +18,8 @@ stdenv.mkDerivation rec {
 
   NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
 
-  buildInputs = [ which gnome3.gnome_common glib intltool pkgconfig libtool cairo gtk3 gst_all_1.gstreamer gst_all_1.gst-plugins-base ];
+  buildInputs = [ which gnome3.gnome_common glib intltool pkgconfig libtool cairo gtk3 xorg.xwininfo ]
+  ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-bad gst-plugins-good gst-plugins-ugly gst-libav wrapGAppsHook ]);
 
   meta = with stdenv.lib; {
     description = "Tool to record a running X desktop to an animation suitable for presentation in a web browser";