From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andy Wingo Subject: [PATCH] gnu: rhythmbox: Add gst-plugins-ugly dependency. Date: Fri, 21 Aug 2015 16:51:32 +0200 Message-ID: <87bne0elu3.fsf@igalia.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38189) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZSnfR-0002yx-Ia for guix-devel@gnu.org; Fri, 21 Aug 2015 10:51:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZSnfM-0000H8-G6 for guix-devel@gnu.org; Fri, 21 Aug 2015 10:51:41 -0400 Received: from pb-sasl0.int.icgroup.com ([208.72.237.25]:61352 helo=sasl.smtp.pobox.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZSnfM-0000H2-9B for guix-devel@gnu.org; Fri, 21 Aug 2015 10:51:36 -0400 Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by pb-sasl0.pobox.com (Postfix) with ESMTP id D9230113AA for ; Fri, 21 Aug 2015 10:51:35 -0400 (EDT) Received: from pb-sasl0. (unknown [127.0.0.1]) by pb-sasl0.pobox.com (Postfix) with ESMTP id D210C113A9 for ; Fri, 21 Aug 2015 10:51:35 -0400 (EDT) Received: from rusty (unknown [88.160.190.192]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pb-sasl0.pobox.com (Postfix) with ESMTPSA id 11872113A8 for ; Fri, 21 Aug 2015 10:51:34 -0400 (EDT) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Not sure what the right solution to this mess is; ideally a user would just have to install a set of gstreamer plugins and those would work across all of their applications, and you wouldn't have to specify the plugins for each gst-using app. Dunno. For now this works better than not being able to play mp3s tho :P Andy --=-=-= Content-Type: text/plain Content-Disposition: inline; filename=0001-gnu-rhythmbox-Add-gst-plugins-ugly-dep.patch >From d73e56bbb687eb42a7449aca37c807afdbf2cbaf Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Fri, 21 Aug 2015 16:49:31 +0200 Subject: [PATCH] gnu: rhythmbox: Add gst-plugins-ugly dep. * gnu/packages/gnome.scm (rhythmbox): Depend on gst-plugins-ugly so that we can play mp3 files. --- gnu/packages/gnome.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index b97c9ff..433a37a 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3007,6 +3007,7 @@ which can read a large number of file formats.") ("gstreamer" ,gstreamer) ("gst-plugins-base" ,gst-plugins-base) ("gst-plugins-good" ,gst-plugins-good) + ("gst-plugins-ugly" ,gst-plugins-ugly) ("totem-pl-parser" ,totem-pl-parser) ("libgudev" ,libgudev) ;;("libmtp" ,libmtp) FIXME: Not detected -- 2.4.3 --=-=-=--