nixpkgs/pkgs/desktops/xfce/applications/parole/default.nix

38 lines
755 B
Nix
Raw Normal View History

2019-08-17 02:56:44 +00:00
{ mkXfceDerivation, dbus, dbus-glib
, gst_all_1, gtk3, libnotify, libxfce4ui, libxfce4util
2019-08-17 22:36:42 +00: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 21:52:01 +00:00
mkXfceDerivation {
2017-12-17 15:02:52 +00:00
category = "apps";
pname = "parole";
2021-02-24 21:06:28 +00:00
version = "4.16.0";
2017-12-17 15:02:52 +00:00
sha256 = "sha256-9Rvhc8asFEb/+OU6uhuHKPl7w5mWBfzGP5ia0tiyDB4=";
2017-12-17 15:02:52 +00:00
postPatch = ''
substituteInPlace src/plugins/mpris2/Makefile.am \
--replace GST_BASE_CFLAGS GST_VIDEO_CFLAGS
'';
buildInputs = with gst_all_1; [
2017-12-17 15:02:52 +00:00
dbus
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
];
meta = {
description = "Modern simple media player";
};
2017-12-17 15:02:52 +00:00
}