b6183023e3
- tests now require DISPLAY access
65 lines
2.2 KiB
Nix
65 lines
2.2 KiB
Nix
{ stdenv, fetchurl, meson, ninja, gettext, gst_all_1
|
|
, clutter-gtk, clutter-gst, python3Packages, shared-mime-info
|
|
, pkgconfig, gtk3, glib, gobject-introspection, totem-pl-parser
|
|
, wrapGAppsHook, itstool, libxml2, vala, gnome3, grilo, grilo-plugins
|
|
, libpeas, adwaita-icon-theme, gnome-desktop, gsettings-desktop-schemas
|
|
, gdk_pixbuf, tracker, nautilus, xvfb_run }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "totem-${version}";
|
|
version = "3.32.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/totem/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
|
sha256 = "12iykwslvnpgmrm4bcchx5rzn2g4rl5r9s86n2001djn58yw6m6r";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
nativeBuildInputs = [ meson ninja vala pkgconfig gettext python3Packages.python itstool gobject-introspection wrapGAppsHook ];
|
|
buildInputs = [
|
|
gtk3 glib grilo clutter-gtk clutter-gst totem-pl-parser grilo-plugins
|
|
gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad
|
|
gst_all_1.gst-plugins-ugly gst_all_1.gst-libav libpeas shared-mime-info
|
|
gdk_pixbuf libxml2 adwaita-icon-theme gnome-desktop
|
|
gsettings-desktop-schemas tracker nautilus
|
|
python3Packages.pygobject3 python3Packages.dbus-python # for plug-ins
|
|
];
|
|
|
|
postPatch = ''
|
|
chmod +x meson_compile_python.py meson_post_install.py # patchShebangs requires executable file
|
|
patchShebangs .
|
|
'';
|
|
|
|
mesonFlags = [
|
|
"-Dwith-nautilusdir=${placeholder "out"}/lib/nautilus/extensions-3.0"
|
|
# https://bugs.launchpad.net/ubuntu/+source/totem/+bug/1712021
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=784236
|
|
# https://github.com/mesonbuild/meson/issues/1994
|
|
"-Denable-vala=no"
|
|
];
|
|
|
|
checkInputs = [ xvfb_run ];
|
|
|
|
checkPhase = ''
|
|
xvfb-run -s '-screen 0 800x600x24' \
|
|
ninja test
|
|
'';
|
|
|
|
wrapPrefixVariables = [ "PYTHONPATH" ];
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = "totem";
|
|
attrPath = "gnome3.totem";
|
|
};
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://wiki.gnome.org/Apps/Videos;
|
|
description = "Movie player for the GNOME desktop based on GStreamer";
|
|
maintainers = gnome3.maintainers;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|