ac70cd728c
All code that was at xfce4-14 has been moved to xfce/*. Old expressions that aren't rewritten might be abandoned or broken. Additonally I've ported the xfce4-14 thunar expression to support thunarPlugins. We can now support this interface in the Xfce module again, although I'm not sure if we have any plugins packaged that support latest thunar.
37 lines
755 B
Nix
37 lines
755 B
Nix
{ mkXfceDerivation, dbus, dbus-glib
|
|
, gst_all_1, gtk3, libnotify, libxfce4ui, libxfce4util
|
|
, taglib, xfconf }:
|
|
|
|
# Doesn't seem to find H.264 codec even though built with gst-plugins-bad.
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "parole";
|
|
version = "1.0.4";
|
|
|
|
sha256 = "18j4bmny37crryh4pvxcjjvj99mln6ljq2vy69awxhvrjx9ljv13";
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/plugins/mpris2/Makefile.am \
|
|
--replace GST_BASE_CFLAGS GST_VIDEO_CFLAGS
|
|
'';
|
|
|
|
buildInputs = with gst_all_1; [
|
|
dbus
|
|
dbus-glib
|
|
gst-plugins-bad
|
|
gst-plugins-base
|
|
gst-plugins-good
|
|
gst-plugins-ugly
|
|
gtk3
|
|
libnotify
|
|
libxfce4ui
|
|
libxfce4util
|
|
taglib
|
|
xfconf
|
|
];
|
|
|
|
meta = {
|
|
description = "Modern simple media player";
|
|
};
|
|
}
|