From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Hashe Subject: [PATCH] gnu: Add rhythmbox. Date: Thu, 18 Jun 2015 00:07:37 -0500 Message-ID: <1434604057-17996-1-git-send-email-david.hashe@dhashe.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50572) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z5S3N-0001gI-Uf for guix-devel@gnu.org; Thu, 18 Jun 2015 01:07:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z5S3K-0005tu-O7 for guix-devel@gnu.org; Thu, 18 Jun 2015 01:07:53 -0400 Received: from mail-oi0-x22f.google.com ([2607:f8b0:4003:c06::22f]:34072) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z5S3K-0005tn-Ib for guix-devel@gnu.org; Thu, 18 Jun 2015 01:07:50 -0400 Received: by oigx81 with SMTP id x81so49721608oig.1 for ; Wed, 17 Jun 2015 22:07:49 -0700 (PDT) Received: from localhost (cpe-66-69-239-23.austin.res.rr.com. [66.69.239.23]) by mx.google.com with ESMTPSA id x77sm3362617oix.24.2015.06.17.22.07.48 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 17 Jun 2015 22:07:48 -0700 (PDT) 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 * gnu/packages/gnome.scm (rhythmbox): New variable. --- gnu/packages/gnome.scm | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 4af1d13..bfe4b30 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2444,3 +2444,51 @@ which are easy to play with the aid of a mouse.") natively with GTK-Doc (the API reference system developed for GTK+ and used throughout GNOME for API documentation).") (license license:gpl2+))) + +(define-public rhythmbox + (package + (name "rhythmbox") + (version "3.2.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/rhythmbox/3.2/" + "rhythmbox-" version ".tar.xz")) + (sha256 + (base32 + "0f3radhlji7rxl760yl2vm49fvfslympxrpm8497acbmbd7wlhxz")))) + (build-system glib-or-gtk-build-system) + (native-inputs + `(("intltool" ,intltool) + ("glib" ,glib "bin") + ("gobject-introspection" ,gobject-introspection) + ("pkg-config" ,pkg-config))) + (inputs + `(("json-glib" ,json-glib) + ("libpeas" ,libpeas) + ("tdb" ,tdb) + ("totem-pl-parser" ,totem-pl-parser) + ("webkitgtk" ,webkitgtk) + ("gnome-desktop" ,gnome-desktop) + ("python" ,python) + ("gmime" ,gmime) + ("nettle" ,nettle) + ("itstool" ,itstool) + ("adwaita-icon-theme" ,adwaita-icon-theme) + ("gst-plugins-base" ,gst-plugins-base) + ("gst-plugins-good" ,gst-plugins-good) + ("gstreamer" ,gstreamer) + ("gudev" ,eudev) + ("libmtp" ,libmtp) + ("libsecret" ,libsecret) + ("libnotify" ,libnotify) + ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) + ("atk" ,atk) + ("pango" ,pango) + ("desktop-file-utils" ,desktop-file-utils) + ("brasero" ,brasero))) + (home-page "https://projects.gnome.org/totem") + (synopsis "Music player for GNOME") + (description "Rhythmbox is a music playing application for GNOME. It supports +playlists, song ratings, and any codecs installed through gstreamer.") + (license license:gpl2+))) + -- 1.9.1