From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: [PATCH 5/6] gnu: Add gnome-desktop. Date: Sat, 30 Nov 2013 02:13:35 +0100 Message-ID: <1385774016-1418-6-git-send-email-tipecaml@gmail.com> References: <1385774016-1418-1-git-send-email-tipecaml@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32938) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VmZ7O-0005pO-CS for guix-devel@gnu.org; Fri, 29 Nov 2013 20:13:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VmZ7G-0003WF-TZ for guix-devel@gnu.org; Fri, 29 Nov 2013 20:13:10 -0500 Received: from mail-wi0-x22f.google.com ([2a00:1450:400c:c05::22f]:38501) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VmZ7G-0003WA-Md for guix-devel@gnu.org; Fri, 29 Nov 2013 20:13:02 -0500 Received: by mail-wi0-f175.google.com with SMTP id hi5so2677733wib.14 for ; Fri, 29 Nov 2013 17:13:02 -0800 (PST) In-Reply-To: <1385774016-1418-1-git-send-email-tipecaml@gmail.com> 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 | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 96234dc..7d483be 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 libffi) #:use-module (gnu packages libpng) @@ -71,6 +72,47 @@ 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 + "The libgnome-desktop library, the gnome-about program and some +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