2019-08-16 19:56:44 -07:00
|
|
|
{ mkXfceDerivation, dbus, dbus-glib
|
2019-08-17 15:36:42 -07:00
|
|
|
, gst-plugins-bad, gst-plugins-base, gst-plugins-good
|
|
|
|
, gst-plugins-ugly, gtk3, libnotify, libxfce4ui, libxfce4util
|
|
|
|
, taglib, xfconf }:
|
2017-12-17 07:02:52 -08:00
|
|
|
|
|
|
|
# Doesn't seem to find H.264 codec even though built with gst-plugins-bad.
|
|
|
|
|
|
|
|
mkXfceDerivation rec {
|
|
|
|
category = "apps";
|
|
|
|
pname = "parole";
|
2019-08-12 03:38:41 -07:00
|
|
|
version = "1.0.4";
|
2017-12-17 07:02:52 -08:00
|
|
|
|
2019-08-12 03:38:41 -07:00
|
|
|
sha256 = "18j4bmny37crryh4pvxcjjvj99mln6ljq2vy69awxhvrjx9ljv13";
|
2017-12-17 07:02:52 -08:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/plugins/mpris2/Makefile.am \
|
|
|
|
--replace GST_BASE_CFLAGS GST_VIDEO_CFLAGS
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
dbus
|
2018-07-18 15:19:06 -07:00
|
|
|
dbus-glib
|
2017-12-17 07:02:52 -08:00
|
|
|
gst-plugins-bad
|
|
|
|
gst-plugins-base
|
|
|
|
gst-plugins-good
|
|
|
|
gst-plugins-ugly
|
|
|
|
gtk3
|
|
|
|
libnotify
|
|
|
|
libxfce4ui
|
|
|
|
libxfce4util
|
|
|
|
taglib
|
|
|
|
xfconf
|
|
|
|
];
|
|
|
|
}
|