nixpkgs/pkgs/applications/video/xplayer/default.nix

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

98 lines
2.0 KiB
Nix
Raw Normal View History

2021-02-03 21:41:54 +00:00
{ stdenv
, lib
, fetchFromGitHub
, autoreconfHook
, autoconf-archive
, clutter-gst
, clutter-gtk
, gettext
, glib
, gobject-introspection
, gst-plugins-bad
, gst-plugins-base
, gst-plugins-good
, gstreamer
, gtk-doc
, gtk3
, intltool
, itstool
, libpeas
, libxml2
, libxplayer-plparser
, pkg-config
, python3
, wrapGAppsHook
, xapp
2021-02-03 21:41:54 +00:00
, yelp-tools }:
stdenv.mkDerivation rec {
pname = "xplayer";
2022-08-10 06:18:10 +00:00
version = "2.4.4";
2021-02-03 21:41:54 +00:00
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
2022-08-10 06:18:10 +00:00
sha256 = "sha256-o2vLNIELd1EYWG26t5gOpnamJrBJeg4P6fcLirkcmfM=";
2021-02-03 21:41:54 +00:00
};
# configure wants to find gst-inspect-1.0 via pkgconfig but
# the gstreamer toolsdir points to the wrong derivation output
postPatch = ''
substituteInPlace configure.ac \
2022-01-28 14:55:42 +00:00
--replace '$gst10_toolsdir/gst-inspect-1.0' '${gstreamer}/bin/gst-inspect-1.0' \
2021-02-03 21:41:54 +00:00
'';
preBuild = ''
makeFlagsArray+=(
"INCLUDES=-I${glib.dev}/include/gio-unix-2.0"
"CFLAGS=-Wno-error" # Otherwise a lot of deprecated warnings are treated as error
)
'';
nativeBuildInputs = [
autoreconfHook
wrapGAppsHook
autoconf-archive
gettext
gtk-doc
intltool
itstool
pkg-config
python3.pkgs.wrapPython
2021-02-03 21:41:54 +00:00
yelp-tools
gobject-introspection
2021-02-03 21:41:54 +00:00
];
buildInputs = [
clutter-gst
clutter-gtk
glib
gst-plugins-bad
gst-plugins-base
gst-plugins-good
gstreamer
gtk3
libpeas
libxml2
libxplayer-plparser
python3
xapp
2021-02-03 21:41:54 +00:00
# to satisfy configure script
python3.pkgs.pygobject3
2021-02-03 21:41:54 +00:00
];
postFixup = ''
buildPythonPath ${python3.pkgs.dbus-python}
patchPythonScript $out/lib/xplayer/plugins/dbus/dbusservice.py
2021-02-03 21:41:54 +00:00
'';
meta = with lib; {
description = "A generic media player from Linux Mint";
license = with licenses; [ gpl2Plus lgpl21Plus ];
homepage = "https://github.com/linuxmint/xplayer";
maintainers = with maintainers; [ tu-maurice bobby285271 ];
2021-02-03 21:41:54 +00:00
platforms = platforms.linux;
};
}