workrave: fix alert sounds by including the right GST plugins

This commit is contained in:
Echo Nolan 2018-03-17 13:31:45 -07:00
parent 250c19c746
commit 5b0985d055
2 changed files with 4 additions and 2 deletions

View file

@ -2,7 +2,8 @@
, autoconf, autoconf-archive, automake, gettext, intltool, libtool, pkgconfig
, libICE, libSM, libXScrnSaver, libXtst, cheetah
, gobjectIntrospection, glib, glibmm, gtkmm3, atk, pango, pangomm, cairo
, cairomm , dbus, dbus-glib, gdome2, gstreamer, libsigcxx }:
, cairomm , dbus, dbus-glib, gdome2, gstreamer, gst-plugins-base
, gst-plugins-good, libsigcxx }:
stdenv.mkDerivation rec {
name = "workrave-${version}";
@ -23,7 +24,7 @@ stdenv.mkDerivation rec {
buildInputs = [
libICE libSM libXScrnSaver libXtst cheetah
gobjectIntrospection glib glibmm gtkmm3 atk pango pangomm cairo cairomm
dbus dbus-glib gdome2 gstreamer libsigcxx
dbus dbus-glib gdome2 gstreamer gst-plugins-base gst-plugins-good libsigcxx
];
preConfigure = "./autogen.sh";

View file

@ -18190,6 +18190,7 @@ with pkgs;
workrave = callPackage ../applications/misc/workrave {
inherit (python27Packages) cheetah;
inherit (gst_all_1) gstreamer gst-plugins-base gst-plugins-good;
};
worldengine-cli = python3Packages.worldengine;