chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / to / totem / package.nix
blob8baa3f884c805d423ea5792316d7655bcc9390bf
1 { stdenv
2 , lib
3 , fetchurl
4 , fetchpatch
5 , meson
6 , ninja
7 , gettext
8 , gst_all_1
9 , python3Packages
10 , shared-mime-info
11 , pkg-config
12 , gtk3
13 , glib
14 , gobject-introspection
15 , totem-pl-parser
16 , wrapGAppsHook3
17 , itstool
18 , libxml2
19 , vala
20 , gnome
21 , grilo
22 , grilo-plugins
23 , libpeas
24 , libportal-gtk3
25 , libhandy
26 , adwaita-icon-theme
27 , gnome-desktop
28 , gsettings-desktop-schemas
29 , gdk-pixbuf
30 , xvfb-run
33 stdenv.mkDerivation rec {
34   pname = "totem";
35   version = "43.0";
37   src = fetchurl {
38     url = "mirror://gnome/sources/totem/${lib.versions.major version}/totem-${version}.tar.xz";
39     hash = "sha256-s202VZKLWJZGKk05+Dtq1m0328nJnc6wLqii43OUpB4=";
40   };
42   patches = [
43     # Lower X11 dependency version since we do not have it.
44     (fetchpatch {
45       url = "https://gitlab.gnome.org/GNOME/totem/-/commit/140d9eea70c3101ef3234abb4de5974cb84b13db.patch";
46       hash = "sha256-ohppxqMiH8Ksc9B2e3AXighfM6KVN+RNXYL+fLELSN8=";
47       revert = true;
48     })
49     (fetchpatch {
50       url = "https://gitlab.gnome.org/GNOME/totem/-/commit/2610b4536f73493587e4a5a38e01c9961fcabb96.patch";
51       hash = "sha256-nPfzS+LQuAlyQOz67hCdtx93w2frhgWlg1KGX5bEU38=";
52       revert = true;
53     })
54     (fetchpatch {
55       url = "https://gitlab.gnome.org/GNOME/totem/-/commit/5b871aee5292f25bbf39dca18045732e979e7a68.patch";
56       hash = "sha256-LqQLdgyZkIVc+/hQ5sdBLqhtjCVIMDSs9tjVXwMFodg=";
57       revert = true;
58     })
59   ];
61   nativeBuildInputs = [
62     meson
63     ninja
64     vala
65     pkg-config
66     gettext
67     python3Packages.python
68     itstool
69     gobject-introspection
70     wrapGAppsHook3
71   ];
73   buildInputs = [
74     gtk3
75     glib
76     grilo
77     totem-pl-parser
78     grilo-plugins
79     gst_all_1.gstreamer
80     gst_all_1.gst-plugins-base
81     (gst_all_1.gst-plugins-good.override { gtkSupport = true; })
82     gst_all_1.gst-plugins-bad
83     gst_all_1.gst-plugins-ugly
84     gst_all_1.gst-libav
85     libpeas
86     libportal-gtk3
87     libhandy
88     shared-mime-info
89     gdk-pixbuf
90     libxml2
91     adwaita-icon-theme
92     gnome-desktop
93     gsettings-desktop-schemas
94     python3Packages.pygobject3
95   ];
97   nativeCheckInputs = [
98     xvfb-run
99   ];
101   mesonFlags = [
102     # TODO: https://github.com/NixOS/nixpkgs/issues/36468
103     "-Dc_args=-I${glib.dev}/include/gio-unix-2.0"
104   ];
106   # Tests do not work with GStreamer 1.18.
107   # https://gitlab.gnome.org/GNOME/totem/-/issues/450
108   doCheck = false;
110   postPatch = ''
111     chmod +x meson_compile_python.py # patchShebangs requires executable file
112     patchShebangs \
113       ./meson_compile_python.py
114   '';
116   checkPhase = ''
117     runHook preCheck
119     xvfb-run -s '-screen 0 800x600x24' \
120       ninja test
122     runHook postCheck
123   '';
125   passthru = {
126     updateScript = gnome.updateScript {
127       packageName = "totem";
128     };
129   };
131   meta = with lib; {
132     homepage = "https://apps.gnome.org/Totem/";
133     changelog = "https://gitlab.gnome.org/GNOME/totem/-/blob/${version}/NEWS?ref_type=tags";
134     description = "Movie player for the GNOME desktop based on GStreamer";
135     maintainers = teams.gnome.members;
136     license = licenses.gpl2Plus; # with exception to allow use of non-GPL compatible plug-ins
137     platforms = platforms.linux;
138   };