mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
gnome3_20.totem: fix build on i686
See https://bugzilla.gnome.org/show_bug.cgi?id=767374
This commit is contained in:
parent
b51ed9863b
commit
217feced47
|
@ -32,6 +32,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
'';
|
||||
|
||||
patches = [ ./x86.patch ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://wiki.gnome.org/Apps/Videos;
|
||||
description = "Movie player for the GNOME desktop based on GStreamer";
|
||||
|
|
11
pkgs/desktops/gnome-3/3.20/core/totem/x86.patch
Normal file
11
pkgs/desktops/gnome-3/3.20/core/totem/x86.patch
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- a/src/backend/bacon-video-widget.c 2016-06-07 20:47:22.981213063 +0200
|
||||
+++ b/src/backend/bacon-video-widget.c 2016-06-07 20:47:44.065781036 +0200
|
||||
@@ -2334,7 +2334,7 @@
|
||||
if (!gst_toc_entry_get_start_stop_times (entry, &start, &stop)) {
|
||||
GST_DEBUG ("Chapter #%d (couldn't get times)", i);
|
||||
} else {
|
||||
- GST_DEBUG ("Chapter #%d (start: %li stop: %li)", i, start, stop);
|
||||
+ GST_DEBUG ("Chapter #%d (start: %" G_GINT64_FORMAT " stop: %" G_GINT64_FORMAT ")", i, start, stop);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in a new issue