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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
889 B
Nix
Raw Permalink Normal View History

{ 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";
version = "4.18.1";
2017-12-17 15:02:52 +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
'';
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
libX11
2017-12-17 15:02:52 +00:00
libxfce4ui
libxfce4util
taglib
xfconf
];
2021-11-28 18:51:44 +00:00
meta = with lib; {
description = "Modern simple media player";
mainProgram = "parole";
2021-11-28 18:51:44 +00:00
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
2017-12-17 15:02:52 +00:00
}