1
0
Fork 1
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:
Luca Bruno 2016-06-07 21:21:37 +02:00
parent b51ed9863b
commit 217feced47
2 changed files with 13 additions and 0 deletions

View file

@ -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";

View 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);
}
}