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

38 lines
755 B
Nix
Raw Normal View History

2019-08-17 03:56:44 +01:00
{ mkXfceDerivation, dbus, dbus-glib
, 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
'';
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
}