From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: [PATCH 5/6 v3] gnu: Add gnome-desktop. Date: Wed, 11 Dec 2013 00:44:46 +0100 Message-ID: <1386719086-853-1-git-send-email-tipecaml@gmail.com> References: <87vbyykjxl.fsf@gnu.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33501) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VqWy3-0007r2-Iz for guix-devel@gnu.org; Tue, 10 Dec 2013 18:44:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VqWxy-0002aq-3w for guix-devel@gnu.org; Tue, 10 Dec 2013 18:43:55 -0500 Received: from mail-wi0-x232.google.com ([2a00:1450:400c:c05::232]:52317) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VqWxx-0002ak-Sq for guix-devel@gnu.org; Tue, 10 Dec 2013 18:43:50 -0500 Received: by mail-wi0-f178.google.com with SMTP id bz8so88273wib.5 for ; Tue, 10 Dec 2013 15:43:49 -0800 (PST) In-Reply-To: <87vbyykjxl.fsf@gnu.org> 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 (gnome-desktop): New variable. --- gnu/packages/gnome.scm | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index e83190a..b2a89bf 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -27,6 +27,7 @@ #:use-module (gnu packages gtk) #:use-module (gnu packages pdf) #:use-module (gnu packages ghostscript) + #:use-module (gnu packages iso-codes) #:use-module (gnu packages libcanberra) #:use-module (gnu packages libpng) #:use-module (gnu packages perl) @@ -70,6 +71,46 @@ Desktop. It is designed to be as simple as possible and has some unique features to enable users to create their discs easily and quickly.") (license gpl2+))) +(define-public gnome-desktop + (package + (name "gnome-desktop") + (version "3.10.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/3.10/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0p5p6wvmy5zvcdnmp5h2biz7rjrcw99chq5kkwcnb68flcmkb1ry")))) + (build-system gnu-build-system) + (inputs + `(("intltool" ,intltool) + ("gdk-pixbuf" ,gdk-pixbuf) + ("glib" ,glib) + ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) + ("gtk+" ,gtk+) + ("iso-codes" ,iso-codes) + ("itstool" ,itstool) + ("libx11" ,libx11) + ("libxext" ,libxext) + ("libxkbfile" ,libxkbfile) + ("libxrandr" ,libxrandr) + ("pkg-config" ,pkg-config) + ("xkeyboard-config" ,xkeyboard-config))) + (home-page "https://www.gnome.org/") + (synopsis + "libgnome-desktop, gnome-about, and desktop-wide documents") + (description + "The libgnome-desktop library provides API shared by several applications +on the desktop, but that cannot live in the platform for various reasons. There +is no API or ABI guarantee, although we are doing our best to provide +stability. Documentation for the API is available with gtk-doc. + +The gnome-about program helps find which version of GNOME is installed.") + ; Some bits under the LGPL. + (license gpl2+))) + (define-public gnome-doc-utils (package (name "gnome-doc-utils") -- 1.8.4.rc3