2023-12-02 10:15:22 +00:00
|
|
|
{ lib
|
|
|
|
, mkXfceDerivation
|
|
|
|
, dbus
|
|
|
|
, dbus-glib
|
|
|
|
, gst_all_1
|
|
|
|
, gtk3
|
|
|
|
, libnotify
|
|
|
|
, libX11
|
|
|
|
, libxfce4ui
|
|
|
|
, libxfce4util
|
|
|
|
, 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 21:52:01 +00:00
|
|
|
mkXfceDerivation {
|
2017-12-17 15:02:52 +00:00
|
|
|
category = "apps";
|
|
|
|
pname = "parole";
|
2023-12-02 10:15:22 +00:00
|
|
|
version = "4.18.1";
|
2017-12-17 15:02:52 +00:00
|
|
|
|
2023-12-02 10:15:22 +00:00
|
|
|
sha256 = "sha256-g+Wy90tHpCeylbU7aUa8578ehmuyWI5WlCK7YdJKlNQ=";
|
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 22:19:06 +00: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
|
2023-12-02 10:15:22 +00:00
|
|
|
libX11
|
2017-12-17 15:02:52 +00:00
|
|
|
libxfce4ui
|
|
|
|
libxfce4util
|
|
|
|
taglib
|
|
|
|
xfconf
|
|
|
|
];
|
2019-11-04 21:27:22 +00:00
|
|
|
|
2021-11-28 18:51:44 +00:00
|
|
|
meta = with lib; {
|
2019-11-04 21:27:22 +00:00
|
|
|
description = "Modern simple media player";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "parole";
|
2021-11-28 18:51:44 +00:00
|
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
2019-11-04 21:27:22 +00:00
|
|
|
};
|
2017-12-17 15:02:52 +00:00
|
|
|
}
|