2019-08-17 03:56:44 +01:00
|
|
|
{ mkXfceDerivation, dbus, dbus-glib
|
2019-11-04 21:27:22 +00:00
|
|
|
, gst_all_1, gtk3, libnotify, libxfce4ui, libxfce4util
|
2019-08-17 23:36:42 +01:00
|
|
|
, taglib, xfconf }:
|
2017-12-17 15:02:52 +00:00
|
|
|
|
|
|
|
# Doesn't seem to find H.264 codec even though built with gst-plugins-bad.
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
mkXfceDerivation {
|
2017-12-17 15:02:52 +00:00
|
|
|
category = "apps";
|
|
|
|
pname = "parole";
|
2020-04-15 18:50:50 +01:00
|
|
|
version = "1.0.5";
|
2017-12-17 15:02:52 +00:00
|
|
|
|
2020-04-15 18:50:50 +01:00
|
|
|
sha256 = "0qgis2gnkcvg7xwp76cbi0ihqdjprvvw2d66hk7klhrafp7c0v13";
|
2017-12-17 15:02:52 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/plugins/mpris2/Makefile.am \
|
|
|
|
--replace GST_BASE_CFLAGS GST_VIDEO_CFLAGS
|
|
|
|
'';
|
|
|
|
|
2019-11-04 21:27:22 +00:00
|
|
|
buildInputs = with gst_all_1; [
|
2017-12-17 15:02:52 +00:00
|
|
|
dbus
|
2018-07-18 23:19:06 +01:00
|
|
|
dbus-glib
|
2017-12-17 15:02:52 +00:00
|
|
|
gst-plugins-bad
|
|
|
|
gst-plugins-base
|
|
|
|
gst-plugins-good
|
|
|
|
gst-plugins-ugly
|
|
|
|
gtk3
|
|
|
|
libnotify
|
|
|
|
libxfce4ui
|
|
|
|
libxfce4util
|
|
|
|
taglib
|
|
|
|
xfconf
|
|
|
|
];
|
2019-11-04 21:27:22 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Modern simple media player";
|
|
|
|
};
|
2017-12-17 15:02:52 +00:00
|
|
|
}
|